0.0.4 • Published 8 years ago

source-mapping-url v0.0.4

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

source-mapping-url

Extracts the sourceMappingUrl from a node.js read stream.

Pass it any utf8 stream, and it gives you the source-map url in that stream. If no source-map is found, it returns false.

Works for both the @ and # formats. Only tested against JS files, but no reason it can't work for CSS files too.

Example

var smu = require("source-mapping-url"),
	zlib = require("zlib"),
    http = require("http");

var stream = http.get("http://code.jquery.com/jquery.min.js")
                 .pipe(zlib.createGunzip());

smu(stream, function(err, sourceMapUrl) {
	// sourceMapUrl is either false (if there's no source map declaration)
	// or is the value extracted from the file.
	// eg. `jquery.min.map`
});

Installation

npm install source-mapping-url

To run tests, cd to the source-mapping-url directory, and type in npm test.

License

MIT

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

11 years ago

0.0.1

11 years ago