Socket
Socket
Sign inDemoInstall

stacktrace-parser

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

stacktrace-parser


Version published
Weekly downloads
3M
increased by2.05%
Maintainers
1
Install size
16.3 kB
Created
Weekly downloads
 

Package description

What is stacktrace-parser?

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.

What are stacktrace-parser's main functionalities?

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);

Other packages similar to stacktrace-parser

Readme

Source

StackTrace-Parser

This parser parses a stack trace from any browser or Node.js and returns an array of hashes representing a line.

Usage

try {
  throw new Error('My error');
} catch(ex) {
  var lines = StackTraceParser.parse(ex.stack);
}

Every line contains four properties: lineNumber, methodName, file and column (if applicable).

TODOs

  • travis (v0.1)
  • check node v0.8 compatibility (v0.1)
  • allow to run in browser (v0.2)

Contribution

If you want to contrib, then do you thing, write tests, run grunt test ensure that everything is green , commit and make the pull request. Or just write an issue, or let's talk.

LICENSE

The MIT License (MIT)

Copyright (c) 2014 Georg Tavonius

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Last updated on 07 Feb 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc