Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jarusified/node-trace-func
A Function stack in node.js using JavaScriptStackTraceApi
https://github.com/jarusified/node-trace-func
Last synced: 5 days ago
JSON representation
A Function stack in node.js using JavaScriptStackTraceApi
- Host: GitHub
- URL: https://github.com/jarusified/node-trace-func
- Owner: jarusified
- Created: 2014-10-30T16:18:10.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-30T18:03:10.000Z (about 10 years ago)
- Last Synced: 2024-04-25T01:08:27.678Z (7 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#node-trace-func
A Function stack in node.js using JavaScriptStackTraceApi
# Install:
npm install trace-func# Example:
```js
var stack = require('trace-func');
foo();
function foo() {
bar();
}
function bar() {
baz();
}
function baz() {
qux();
}
function qux(){
quux();
}
function quux(){
stack(); // call stack
}
```
# Output-format
Function Name location [row,column]