0.1.7 • Published 10 years ago

source-map-stack v0.1.7

Weekly downloads
5
License
MIT
Repository
github
Last release
10 years ago

source-map-stack

Build status Git tag NPM version Code style

Source map stack traces.

Installation

$ npm install source-map-stack

Usage

var sourceMap = require('source-map-stack')

var content = fs.readFileSync('build.js')
var map = sourceMap.get(content)
try {
  vm.runInNewContext(content, ctx)
} catch(e) {
  console.error()
  console.error(sourceMap.stack(map, e))
}

API

.get(content)

  • content - file contents with source map embedded

Returns: a SourceMapConsumer from mozilla's source-map

.stack(map, error, base)

  • map - a source map consumer
  • error - the error whose stack will be mapped
  • base - basepath of paths used in stack trace

Returns: a mapped stack trace

License

MIT

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago