Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
stacktrace-parser
Advanced tools
Parses every stack trace into a nicely formatted array of hashes.
The stacktrace-parser npm package is a utility for parsing stack traces generated by errors in JavaScript. It can parse the stack string of an error into a more structured format, making it easier to understand and process programmatically. This can be particularly useful for error handling, logging, and debugging purposes.
Parse Error Stack Trace
This feature allows you to parse the stack trace of an error into a structured format. The parsed stack trace includes details such as the file name, method name, line number, and column number where the error occurred. This makes it easier to pinpoint the source of errors in your code.
const stacktraceParser = require('stacktrace-parser');
const stack = stacktraceParser.parse(new Error('Test error').stack);
console.log(stack);
Similar to stacktrace-parser, error-stack-parser provides functionality for parsing and extracting information from error stack traces. It offers a slightly different API and may have differences in the parsing logic or the structure of the parsed output, making it an alternative depending on specific needs or preferences.
This package offers functionality to get stack traces of the current position in code execution, in addition to parsing existing stack traces. It provides a broader set of features related to stack traces, including the ability to generate and parse them, which might make it a more versatile choice for certain applications.
This parser parses a stack trace from any browser or Node.js and returns an array of hashes each representing a line.
The goal here is to support every browser even old Internet Explorer stack traces will work.
npm install stacktrace-parser
import * as stackTraceParser from 'stacktrace-parser';
try {
throw new Error('My error');
} catch(ex) {
const stack = stackTraceParser.parse(ex.stack);
}
Every line contains five properties: lineNumber
, methodName
, arguments
, file
and column
(if applicable).
If you want to contrib, then do you thing, write tests, run npm run test
ensure that everything is green,
commit and make the pull request. Or just write an issue, or let's talk.
FAQs
Parses every stack trace into a nicely formatted array of hashes.
The npm package stacktrace-parser receives a total of 2,677,365 weekly downloads. As such, stacktrace-parser popularity was classified as popular.
We found that stacktrace-parser demonstrated a not healthy version release cadence and project activity because the last version was released 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.