3 This is a library to generate and consume the source map format
4 [described here][format].
6 This library is written in the Asynchronous Module Definition format, and works
7 in the following environments:
9 * Modern Browsers supporting ECMAScript 5 (either after the build, or with an
10 AMD loader such as RequireJS)
12 * Inside Firefox (as a JSM file, after the build)
14 * With NodeJS versions 0.8.X and higher
18 $ npm install source-map
20 ## Building from Source (for everywhere else)
22 Install Node and then run
24 $ git clone https://fitzgen@github.com/mozilla/source-map.git
30 $ node Makefile.dryice.js
32 This should spew a bunch of stuff to stdout, and create the following files:
34 * `dist/source-map.js` - The unminified browser version.
36 * `dist/source-map.min.js` - The minified browser version.
38 * `dist/SourceMap.jsm` - The JavaScript Module for inclusion in Firefox source.
42 ### Consuming a source map
47 names: ['bar', 'baz', 'n'],
48 sources: ['one.js', 'two.js'],
49 sourceRoot: 'http://example.com/www/js/',
50 mappings: 'CAAC,IAAI,IAAM,SAAUA,GAClB,OAAOC,IAAID;CCDb,IAAI,IAAM,SAAUE,GAClB,OAAOA'
53 var smc = new SourceMapConsumer(rawSourceMap);
55 console.log(smc.sources);
56 // [ 'http://example.com/www/js/one.js',
57 // 'http://example.com/www/js/two.js' ]
59 console.log(smc.originalPositionFor({
63 // { source: 'http://example.com/www/js/two.js',
68 console.log(smc.generatedPositionFor({
69 source: 'http://example.com/www/js/two.js',
73 // { line: 2, column: 28 }
75 smc.eachMapping(function (m) {
79 ### Generating a source map
82 [**Compiling to JavaScript, and Debugging with Source Maps**](https://hacks.mozilla.org/2013/05/compiling-to-javascript-and-debugging-with-source-maps/)
84 #### With SourceNode (high level API)
86 function compile(ast) {
88 case 'BinaryExpression':
89 return new SourceNode(
93 [compile(ast.left), " + ", compile(ast.right)]
96 return new SourceNode(
104 throw new Error("Bad AST");
108 var ast = parse("40 + 2", "add.js");
109 console.log(compile(ast).toStringWithSourceMap({
113 // map: [object SourceMapGenerator] }
115 #### With SourceMapGenerator (low level API)
117 var map = new SourceMapGenerator({
118 file: "source-mapped.js"
134 console.log(map.toString());
135 // '{"version":3,"file":"source-mapped.js","sources":["foo.js"],"names":["christopher"],"mappings":";;;;;;;;;mCAgCEA"}'
139 Get a reference to the module:
142 var sourceMap = require('source-map');
145 var sourceMap = window.sourceMap;
149 Components.utils.import('resource:///modules/devtools/SourceMap.jsm', sourceMap);
151 ### SourceMapConsumer
153 A SourceMapConsumer instance represents a parsed source map which we can query
154 for information about the original file positions by giving it a file position
155 in the generated source.
157 #### new SourceMapConsumer(rawSourceMap)
159 The only parameter is the raw source map (either as a string which can be
160 `JSON.parse`'d, or an object). According to the spec, source maps have the
161 following attributes:
163 * `version`: Which version of the source map spec this map is following.
165 * `sources`: An array of URLs to the original source files.
167 * `names`: An array of identifiers which can be referrenced by individual
170 * `sourceRoot`: Optional. The URL root from which all sources are relative.
172 * `sourcesContent`: Optional. An array of contents of the original source files.
174 * `mappings`: A string of base64 VLQs which contain the actual mappings.
176 * `file`: Optional. The generated filename this source map is associated with.
178 #### SourceMapConsumer.prototype.computeColumnSpans()
180 Compute the last column for each generated mapping. The last column is
183 #### SourceMapConsumer.prototype.originalPositionFor(generatedPosition)
185 Returns the original source, line, and column information for the generated
186 source's line and column positions provided. The only argument is an object with
187 the following properties:
189 * `line`: The line number in the generated source.
191 * `column`: The column number in the generated source.
193 and an object is returned with the following properties:
195 * `source`: The original source file, or null if this information is not
198 * `line`: The line number in the original source, or null if this information is
201 * `column`: The column number in the original source, or null or null if this
202 information is not available.
204 * `name`: The original identifier, or null if this information is not available.
206 #### SourceMapConsumer.prototype.generatedPositionFor(originalPosition)
208 Returns the generated line and column information for the original source,
209 line, and column positions provided. The only argument is an object with
210 the following properties:
212 * `source`: The filename of the original source.
214 * `line`: The line number in the original source.
216 * `column`: The column number in the original source.
218 and an object is returned with the following properties:
220 * `line`: The line number in the generated source, or null.
222 * `column`: The column number in the generated source, or null.
224 #### SourceMapConsumer.prototype.allGeneratedPositionsFor(originalPosition)
226 Returns all generated line and column information for the original source
227 and line provided. The only argument is an object with the following
230 * `source`: The filename of the original source.
232 * `line`: The line number in the original source.
234 and an array of objects is returned, each with the following properties:
236 * `line`: The line number in the generated source, or null.
238 * `column`: The column number in the generated source, or null.
240 #### SourceMapConsumer.prototype.sourceContentFor(source)
242 Returns the original source content for the source provided. The only
243 argument is the URL of the original source file.
245 #### SourceMapConsumer.prototype.eachMapping(callback, context, order)
247 Iterate over each mapping between an original source/line/column and a
248 generated line/column in this source map.
250 * `callback`: The function that is called with each mapping. Mappings have the
251 form `{ source, generatedLine, generatedColumn, originalLine, originalColumn,
254 * `context`: Optional. If specified, this object will be the value of `this`
255 every time that `callback` is called.
257 * `order`: Either `SourceMapConsumer.GENERATED_ORDER` or
258 `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to iterate over
259 the mappings sorted by the generated file's line/column order or the
260 original's source/line/column order, respectively. Defaults to
261 `SourceMapConsumer.GENERATED_ORDER`.
263 ### SourceMapGenerator
265 An instance of the SourceMapGenerator represents a source map which is being
268 #### new SourceMapGenerator([startOfSourceMap])
270 You may pass an object with the following properties:
272 * `file`: The filename of the generated source that this source map is
275 * `sourceRoot`: A root for all relative URLs in this source map.
277 * `skipValidation`: Optional. When `true`, disables validation of mappings as
278 they are added. This can improve performance but should be used with
279 discretion, as a last resort. Even then, one should avoid using this flag when
280 running tests, if possible.
282 #### SourceMapGenerator.fromSourceMap(sourceMapConsumer)
284 Creates a new SourceMapGenerator based on a SourceMapConsumer
286 * `sourceMapConsumer` The SourceMap.
288 #### SourceMapGenerator.prototype.addMapping(mapping)
290 Add a single mapping from original source line and column to the generated
291 source's line and column for this source map being created. The mapping object
292 should have the following properties:
294 * `generated`: An object with the generated line and column positions.
296 * `original`: An object with the original line and column positions.
298 * `source`: The original source file (relative to the sourceRoot).
300 * `name`: An optional original token name for this mapping.
302 #### SourceMapGenerator.prototype.setSourceContent(sourceFile, sourceContent)
304 Set the source content for an original source file.
306 * `sourceFile` the URL of the original source file.
308 * `sourceContent` the content of the source file.
310 #### SourceMapGenerator.prototype.applySourceMap(sourceMapConsumer[, sourceFile[, sourceMapPath]])
312 Applies a SourceMap for a source file to the SourceMap.
313 Each mapping to the supplied source file is rewritten using the
314 supplied SourceMap. Note: The resolution for the resulting mappings
315 is the minimium of this map and the supplied map.
317 * `sourceMapConsumer`: The SourceMap to be applied.
319 * `sourceFile`: Optional. The filename of the source file.
320 If omitted, sourceMapConsumer.file will be used, if it exists.
321 Otherwise an error will be thrown.
323 * `sourceMapPath`: Optional. The dirname of the path to the SourceMap
324 to be applied. If relative, it is relative to the SourceMap.
326 This parameter is needed when the two SourceMaps aren't in the same
327 directory, and the SourceMap to be applied contains relative source
328 paths. If so, those relative source paths need to be rewritten
329 relative to the SourceMap.
331 If omitted, it is assumed that both SourceMaps are in the same directory,
332 thus not needing any rewriting. (Supplying `'.'` has the same effect.)
334 #### SourceMapGenerator.prototype.toString()
336 Renders the source map being generated to a string.
340 SourceNodes provide a way to abstract over interpolating and/or concatenating
341 snippets of generated JavaScript source code, while maintaining the line and
342 column information associated between those snippets and the original source
343 code. This is useful as the final intermediate representation a compiler might
344 use before outputting the generated JS and source map.
346 #### new SourceNode([line, column, source[, chunk[, name]]])
348 * `line`: The original line number associated with this source node, or null if
349 it isn't associated with an original line.
351 * `column`: The original column number associated with this source node, or null
352 if it isn't associated with an original column.
354 * `source`: The original source's filename; null if no filename is provided.
356 * `chunk`: Optional. Is immediately passed to `SourceNode.prototype.add`, see
359 * `name`: Optional. The original identifier.
361 #### SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])
363 Creates a SourceNode from generated code and a SourceMapConsumer.
365 * `code`: The generated code
367 * `sourceMapConsumer` The SourceMap for the generated code
369 * `relativePath` The optional path that relative sources in `sourceMapConsumer`
370 should be relative to.
372 #### SourceNode.prototype.add(chunk)
374 Add a chunk of generated JS to this source node.
376 * `chunk`: A string snippet of generated JS code, another instance of
377 `SourceNode`, or an array where each member is one of those things.
379 #### SourceNode.prototype.prepend(chunk)
381 Prepend a chunk of generated JS to this source node.
383 * `chunk`: A string snippet of generated JS code, another instance of
384 `SourceNode`, or an array where each member is one of those things.
386 #### SourceNode.prototype.setSourceContent(sourceFile, sourceContent)
388 Set the source content for a source file. This will be added to the
389 `SourceMap` in the `sourcesContent` field.
391 * `sourceFile`: The filename of the source file
393 * `sourceContent`: The content of the source file
395 #### SourceNode.prototype.walk(fn)
397 Walk over the tree of JS snippets in this node and its children. The walking
398 function is called once for each snippet of JS and is passed that snippet and
399 the its original associated source's line/column location.
401 * `fn`: The traversal function.
403 #### SourceNode.prototype.walkSourceContents(fn)
405 Walk over the tree of SourceNodes. The walking function is called for each
406 source file content and is passed the filename and source content.
408 * `fn`: The traversal function.
410 #### SourceNode.prototype.join(sep)
412 Like `Array.prototype.join` except for SourceNodes. Inserts the separator
413 between each of this source node's children.
415 * `sep`: The separator.
417 #### SourceNode.prototype.replaceRight(pattern, replacement)
419 Call `String.prototype.replace` on the very right-most source snippet. Useful
420 for trimming whitespace from the end of a source node, etc.
422 * `pattern`: The pattern to replace.
424 * `replacement`: The thing to replace the pattern with.
426 #### SourceNode.prototype.toString()
428 Return the string representation of this source node. Walks over the tree and
429 concatenates all the various snippets together to one string.
431 #### SourceNode.prototype.toStringWithSourceMap([startOfSourceMap])
433 Returns the string representation of this tree of source nodes, plus a
434 SourceMapGenerator which contains all the mappings between the generated and
437 The arguments are the same as those to `new SourceMapGenerator`.
441 [![Build Status](https://travis-ci.org/mozilla/source-map.png?branch=master)](https://travis-ci.org/mozilla/source-map)
443 Install NodeJS version 0.8.0 or greater, then run `node test/run-tests.js`.
445 To add new tests, create a new file named `test/test-<your new test name>.js`
446 and export your test functions with names that start with "test", for example
448 exports["test doing the foo bar"] = function (assert, util) {
452 The new test will be located automatically when you run the suite.
454 The `util` argument is the test utility module located at `test/source-map/util`.
456 The `assert` argument is a cut down version of node's assert module. You have
457 access to the following assertion functions:
469 (The reason for the restricted set of test functions is because we need the
470 tests to run inside Firefox's test suite as well and so the assert module is
471 shimmed in that environment. See `build/assert-shim.js`.)
473 [format]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit
474 [feature]: https://wiki.mozilla.org/DevTools/Features/SourceMap
475 [Dryice]: https://github.com/mozilla/dryice