Skip to content

iArnaud/serialize-error

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Serialize an error into a plain object

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%