Description
Hi thanks for this library. It looks great all though I've had some problems getting off the starting block with it.
I've prepared an example project which I believe should work but while parsing a stack trace from an exception it throws an error.
Expected Behavior
No exception should be thrown while parsing the stack trace in the example project.
Current Behavior
The following exception is thrown while parsing the stack trace in the example project:
C:\projects\github\stack-trace-test\node_modules\error-stack-parser\error-stack-parser.js:31
return this.parseV8OrIE(error);
^
TypeError: Cannot read property 'parseV8OrIE' of undefined
at ErrorStackParser$$parse (C:\projects\github\stack-trace-test\node_modules\error-stack-parser\error-stack-parser.js:31:29)
at Object.<anonymous> (C:\projects\github\stack-trace-test\my test script.js:18:20)
at Module._compile (module.js:643:30)
at Object.Module._extensions..js (module.js:654:10)
at Module.load (module.js:556:32)
at tryModuleLoad (module.js:499:12)
at Function.Module._load (module.js:491:3)
at Function.Module.runMain (module.js:684:10)
at startup (bootstrap_node.js:187:16)
at bootstrap_node.js:608:3
Steps to Reproduce (for bugs)
I've prepared an example repository:
https://github.com/ashleydavis/stack-trace-test
Clone the repo. Or download and unpack the repo.
Use npm install
to install dependencies.
Use npm start
to run the example project.
The exception mentioned above is thrown.
Context
I was hoping to use your stack trace parser in my project, but I've been blocked from using it by some basic problems. This is just the first issue, if we can solve this one I'll prepare an example that demonstrates the next problem.
Your Environment
- stacktrace.js version: 2.0.2
- Browser Name and version: Node.js v8.9.4
- Operating System and version (desktop or mobile): Windows 10
- Link to your project: https://github.com/ashleydavis/stack-trace-test
Possible Solution
Sorry, no idea.