Skip to content

JSON stringify replacer to add support for error serialization

License

Notifications You must be signed in to change notification settings

tiaanduplessis/err-replacer

Repository files navigation

err-replacer

JSON stringify replacer to add support for error serialization



Built with ❤︎ by tiaanduplessis and contributors

Table of Contents

Table of Contents
  • Install
  • Usage
  • Contribute
  • License
  • Install

    Greenkeeper badge

    $ npm install err-replacer
    # OR
    $ yarn add err-replacer

    Usage

    const errReplacer = require('err-replacer')
    
    const err = new Error('Foo')
    
    console.log(JSON.stringify(err, errReplacer))
    // {"stack":"Error: Foo\n    at Object.<anonymous> (/Users/Tiaan/Workspace/err-replacer/index.js:16:13)\n    at Module._compile (module.js:569:30)\n
    //  at Object.Module._extensions..js (module.js:580:10)\n    at Module.load (module.js:503:32)\n    at tryModuleLoad (module.js:466:12)\n    at Functio
    // n.Module._load (module.js:458:3)\n    at Function.Module.runMain (module.js:605:10)\n    at startup (bootstrap_node.js:158:16)\n    at bootstrap_nod
    // e.js:575:3","message":"Foo"}
     

    Contributing

    Contributions are welcome!

    1. Fork it.
    2. Create your feature branch: git checkout -b my-new-feature
    3. Commit your changes: git commit -am 'Add some feature'
    4. Push to the branch: git push origin my-new-feature
    5. Submit a pull request :D

    Or open up a issue.

    License

    Licensed under the MIT License.

    About

    JSON stringify replacer to add support for error serialization

    Topics

    Resources

    License

    Stars

    Watchers

    Forks

    Releases

    No releases published

    Packages

    No packages published