Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.53 KB

README.md

File metadata and controls

52 lines (37 loc) · 1.53 KB

Source Map Peek

Peek into original source via source maps from the command line when devtools fail.

There are still few cases where source map support fails and you have to debug the huge js bundle.

For example

  • Those shitty old browsers
  • Long stack traces from promise libraries such as Q or Bluebird
  • Some bad test frameworks
  • Probably in some other weird setups too

Source Map Peek is a small bandage for these situations. It allows you to view and access the original source using source maps from the command line.

Screencast http://youtu.be/u11QzPGIDWU

Usage

source-map-peek [OPTIONS] FILE<:LINE>[:COLUMN]

--path           Print only the source path (with line and column).
--padding        Add padding for the preview. Default: 10
--map            Set custom path to the source map file if everything else fails
--add-prefix     Add prefix to source map destination file
--remove-prefix  Remove prefix from source map source file

Example

$ npm exec https://github.com/grasp-gg/source-map-peek -p 5 bundle.js:9134
16:     constructor: ->
17:         super
18:         @randomizeIndex()
19:
20:         if not @collection
21:             throw new Error "Collection missing"
22:
23:         @listenTo @collection, "reset", => @render()
24:
25:         @on "reset", =>

file /path/to/file.coffee
line: 20 column: 8
path: /path/to/file.coffee:20:8

Run (npm 7)

npm exec https://github.com/grasp-gg/source-map-peek --help