Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brendanashworth/stacktracer
Node.js stacktracing library
https://github.com/brendanashworth/stacktracer
Last synced: 9 days ago
JSON representation
Node.js stacktracing library
- Host: GitHub
- URL: https://github.com/brendanashworth/stacktracer
- Owner: brendanashworth
- License: mit
- Created: 2014-08-14T08:41:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-14T08:43:03.000Z (over 10 years ago)
- Last Synced: 2023-04-10T02:51:02.118Z (over 1 year ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
stacktracer
-----![Stacktracer NPM](https://nodei.co/npm/stacktracer.png)
> Stacktracer is an NPM library for retrieving the stacktrace of the current code (without pausing, stopping, or killing execution).
### Installation
```bash
$ npm install stacktracer --save
```### Example Usage
[Or here](./example.js). Just the raw stack trace is available right now.
```javascript
var stacktracer = require('stacktracer');var trace = stacktracer.getRawTrace();
console.log(trace);
```### License
[MIT license](./LICENSE)