callstack

1.0.1 • Public • Published

node-callstack

The simplest possible callstack fetcher.

Build Status

npm install callstack

Usage

var callstack = require('callstack');
 
function hello () {
  console.log(callstack());
}
 
hello();

Produces output:

[ '    at hello (/Users/nailgun/workspace/callstack/example.js:4:15)',
  '    at Object.<anonymous> (/Users/nailgun/workspace/callstack/example.js:7:1)',
  '    at Module._compile (module.js:449:26)',
  '    at Object.Module._extensions..js (module.js:467:10)',
  '    at Module.load (module.js:356:32)',
  '    at Function.Module._load (module.js:312:12)',
  '    at Module.runMain (module.js:492:10)',
  '    at process.startup.processNextTick.process._tickCallback (node.js:245:9)' ]

Dependents (4)

Package Sidebar

Install

npm i callstack

Weekly Downloads

36

Version

1.0.1

License

MIT

Last publish

Collaborators

  • nailgun