About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
npm install @stdlib/error-to-json
var error2json = require( '@stdlib/error-to-json' );
Returns a JSON representation of an error
object.
var err = new Error( 'beep' );
var json = error2json( err );
/* e.g., returns
{
'type': 'Error',
'name': 'Error', // if present
'message': 'beep',
'stack': '...' // if present
}
*/
The JSON object
is guaranteed to have the following properties:
- type: error type.
- message: error message.
The only standardized cross-platform property is message
. Depending on the platform, the following properties may be present:
- name: error name.
- stack: stack trace.
- code: error code (Node.js system errors).
-
errno: error code
string
(Node.js system errors). -
syscall:
string
representing the failed system call (Node.js system errors).
The function also serializes all enumerable
properties.
var err = new Error( 'beep' );
err.a = 'b';
err.c = { 'd': 'e' };
var json = error2json( err );
/* e.g., returns
{
'type': 'Error',
'name': 'Error', // if present
'message': 'beep',
'stack': '...', // if present
'a': 'b',
'c': {
'd': 'e'
}
}
*/
-
Supported built-in
error
types: -
The implementation supports custom error types and sets the
type
field to the closest built-inerror
type.function CustomError( msg ) { this.name = 'CustomError'; this.message = msg || ''; this.stack = ( new TypeError() ).stack; return this; } CustomError.prototype = Object.create( TypeError.prototype ); CustomError.prototype.constructor = CustomError; var err = new CustomError( 'boop' ); var json = error2json( err ); /* e.g., returns { 'type': 'TypeError', 'name': 'CustomError', 'message': 'boop', 'stack': '...' } */
var error2json = require( '@stdlib/error-to-json' );
var err = new Error( 'beep' );
var out = error2json( err );
/* e.g., returns
{
'type': 'Error',
'name': 'Error',
'message': 'beep',
'stack': '...'
}
*/
err = new TypeError( 'invalid type' );
out = error2json( err );
/* e.g., returns
{
'type': 'TypeError',
'name': 'TypeError',
'message': 'invalid type',
'stack': '...'
}
*/
err = new SyntaxError( 'bad syntax' );
out = error2json( err );
/* e.g., returns
{
'type': 'SyntaxError',
'name': 'SyntaxError',
'message': 'bad syntax',
'stack': '...'
}
*/
err = new ReferenceError( 'unknown variable' );
out = error2json( err );
/* e.g., returns
{
'type': 'ReferenceError',
'name': 'ReferenceError',
'message': 'unknown variable',
'stack': '...'
}
*/
err = new URIError( 'bad URI' );
out = error2json( err );
/* e.g., returns
{
'type': 'URIError',
'name': 'URIError',
'message': 'bad URI',
'stack': '...'
}
*/
err = new RangeError( 'value out-of-range' );
out = error2json( err );
/* e.g., returns
{
'type': 'RangeError',
'name': 'RangeError',
'message': 'value out-of-range',
'stack': '...'
}
*/
err = new EvalError( 'eval error' );
out = error2json( err );
/* e.g., returns
{
'type': 'EvalError',
'name': 'EvalError',
'message': 'eval error',
'stack': '...'
}
*/
-
@stdlib/error-reviver
: revive a JSON-serialized error object.
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2024. The Stdlib Authors.