
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
error-stack-parser-es
Advanced tools
A port of stacktracejs/error-stack-parser, rewrite with TypeScript and ES Modules.
import { parse } from 'error-stack-parser-es'
const stacktrace = parse(new Error('BOOM!'))
Refer to stacktracejs/error-stack-parser for more details.
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}]
MIT License © 2023-PRESENT Anthony Fu MIT License © 2017 Eric Wendelin
FAQs
Cross-browser Error parser
The npm package error-stack-parser-es receives a total of 1,079,996 weekly downloads. As such, error-stack-parser-es popularity was classified as popular.
We found that error-stack-parser-es demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.