error-stack-parser-es

antfu
esm cjs
error-stack-parser-es JS library on GitHub error-stack-parser-es JS library on npm Download error-stack-parser-es JS library

Cross-browser Error parser

Version 1.0.5 License MIT Vulnerabilities 0
error-stack-parser-es has no homepage
error-stack-parser-es JS library on GitHub
error-stack-parser-es JS library on npm
Download error-stack-parser-es JS library
<script type="module"> import errorStackParserEs from 'https://cdn.jsdelivr.net/npm/error-stack-parser-es@1.0.5/+esm' </script>
Learn more

error-stack-parser-es

NPM version

A port of stacktracejs/error-stack-parser, rewrite with TypeScript and ES Modules.

Usage

import { parse } from 'error-stack-parser-es'

const stacktrace = parse(new Error('BOOM!'))

Refer to stacktracejs/error-stack-parser for more details.

Lite API

Additionally, this fork added a lite version of the API representation for the stack frames. You can import it from error-stack-parser-es/lite. For example, line and col instead of lineNumber and columnNumber.

import { parse } from 'error-stack-parser-es/lite'

const stacktrace = parse(new Error('BOOM!'))
// [{ file: 'file.js', name: 'method', line: 1, col: 2}]

It also allows you to parse directly from a stacktrace string (which does not support Opera stacktrace format).

import { parseStack } from 'error-stack-parser-es/lite'

const stacktrace = parseStack('Error\n    at method (file.js:1:2)')
// [{ file: 'file.js', name: 'method', line: 1, col: 2}]

License

MIT License © 2023-PRESENT Anthony Fu MIT License © 2017 Eric Wendelin