ssap_app/node_modules/serialize-error
ananyak19 f0453fc9f0 first commit 2026-01-18 17:57:34 +05:30
..
index.js first commit 2026-01-18 17:57:34 +05:30
license first commit 2026-01-18 17:57:34 +05:30
package.json first commit 2026-01-18 17:57:34 +05:30
readme.md first commit 2026-01-18 17:57:34 +05:30

readme.md

serialize-error Build Status

Serialize an error into a plain object

Useful if you for example need to JSON.stringify() or process.send() the error.

Install

$ npm install --save serialize-error

Usage

const serializeError = require('serialize-error');
const error = new Error('unicorn');

console.log(error);
//=> [Error: unicorn]

console.log(serializeError(error));
//=> {name: 'Error', message: 'unicorn', stack: 'Error: unicorn\n    at Object.<anonymous> ...'}

License

MIT © Sindre Sorhus