use syntax highlighting in README

This commit is contained in:
Raine Virta 2015-06-05 21:37:30 +03:00
parent d2a81fb29a
commit ea263aeb60

View File

@ -7,15 +7,21 @@ This module provides source map support for stack traces in node via the [V8 sta
#### Node support #### Node support
npm install source-map-support ```
$ npm install source-map-support
```
Source maps can be generated using libraries such as [source-map-index-generator](https://github.com/twolfson/source-map-index-generator). Once you have a valid source map, insert the following line at the top of your compiled code: Source maps can be generated using libraries such as [source-map-index-generator](https://github.com/twolfson/source-map-index-generator). Once you have a valid source map, insert the following line at the top of your compiled code:
```js
require('source-map-support').install(); require('source-map-support').install();
```
And place a source mapping comment somewhere in the file (usually done automatically or with an option by your transpiler): And place a source mapping comment somewhere in the file (usually done automatically or with an option by your transpiler):
```
//# sourceMappingURL=path/to/source.map //# sourceMappingURL=path/to/source.map
```
If multiple sourceMappingURL comments exist in one file, the last sourceMappingURL comment will be If multiple sourceMappingURL comments exist in one file, the last sourceMappingURL comment will be
respected (e.g. if a file mentions the comment in code, or went through multiple transpilers). respected (e.g. if a file mentions the comment in code, or went through multiple transpilers).
@ -24,7 +30,7 @@ The path should either be absolute or relative to the compiled file.
It is also possible to to install the source map support directly by It is also possible to to install the source map support directly by
requiring the `register` module which can be handy with ES6: requiring the `register` module which can be handy with ES6:
```javascript ```js
import 'source-map-support/register' import 'source-map-support/register'
// Instead of: // Instead of:
@ -35,7 +41,7 @@ sourceMapSupport.install()
It is also very useful with Mocha: It is also very useful with Mocha:
``` ```
mocha --require source-map-support/register tests/ $ mocha --require source-map-support/register tests/
``` ```
#### Browser support #### Browser support
@ -44,27 +50,34 @@ This library also works in Chrome. While the DevTools console already supports s
This library also works if you use another build process or just include the source files directly. In this case, include the file `browser-source-map-support.js` in your page and call `sourceMapSupport.install()`. It contains the whole library already bundled for the browser using browserify. This library also works if you use another build process or just include the source files directly. In this case, include the file `browser-source-map-support.js` in your page and call `sourceMapSupport.install()`. It contains the whole library already bundled for the browser using browserify.
```html
<script src="browser-source-map-support.js"></script> <script src="browser-source-map-support.js"></script>
<script>sourceMapSupport.install();</script> <script>sourceMapSupport.install();</script>
```
This library also works if you use AMD (Asynchronous Module Definition), which is used in tools like [RequireJS](http://requirejs.org/). Just list `browser-source-map-support` as a dependency: This library also works if you use AMD (Asynchronous Module Definition), which is used in tools like [RequireJS](http://requirejs.org/). Just list `browser-source-map-support` as a dependency:
```html
<script> <script>
define(['browser-source-map-support'], function(sourceMapSupport) { define(['browser-source-map-support'], function(sourceMapSupport) {
sourceMapSupport.install(); sourceMapSupport.install();
}); });
</script> </script>
```
## Options ## Options
This module installs two things: a change to the `stack` property on `Error` objects and a handler for uncaught exceptions that mimics node's default exception handler (the handler can be seen in the demos below). You may want to disable the handler if you have your own uncaught exception handler. This can be done by passing an argument to the installer: This module installs two things: a change to the `stack` property on `Error` objects and a handler for uncaught exceptions that mimics node's default exception handler (the handler can be seen in the demos below). You may want to disable the handler if you have your own uncaught exception handler. This can be done by passing an argument to the installer:
```js
require('source-map-support').install({ require('source-map-support').install({
handleUncaughtExceptions: false handleUncaughtExceptions: false
}); });
```
This module loads source maps from the filesystem by default. You can provide alternate loading behavior through a callback as shown below. For example, [Meteor](https://github.com/meteor) keeps all source maps cached in memory to avoid disk access. This module loads source maps from the filesystem by default. You can provide alternate loading behavior through a callback as shown below. For example, [Meteor](https://github.com/meteor) keeps all source maps cached in memory to avoid disk access.
```js
require('source-map-support').install({ require('source-map-support').install({
retrieveSourceMap: function(source) { retrieveSourceMap: function(source) {
if (source === 'compiled.js') { if (source === 'compiled.js') {
@ -76,6 +89,7 @@ This module loads source maps from the filesystem by default. You can provide al
return null; return null;
} }
}); });
```
## Demos ## Demos
@ -83,18 +97,23 @@ This module loads source maps from the filesystem by default. You can provide al
original.js: original.js:
```js
throw new Error('test'); // This is the original code throw new Error('test'); // This is the original code
```
compiled.js: compiled.js:
```js
require('source-map-support').install(); require('source-map-support').install();
throw new Error('test'); // This is the compiled code throw new Error('test'); // This is the compiled code
// The next line defines the sourceMapping. // The next line defines the sourceMapping.
//# sourceMappingURL=compiled.js.map //# sourceMappingURL=compiled.js.map
```
compiled.js.map: compiled.js.map:
```json
{ {
"version": 3, "version": 3,
"file": "compiled.js", "file": "compiled.js",
@ -102,9 +121,11 @@ compiled.js.map:
"names": [], "names": [],
"mappings": ";;;AAAA,MAAM,IAAI" "mappings": ";;;AAAA,MAAM,IAAI"
} }
```
Run compiled.js using node (notice how the stack trace uses original.js instead of compiled.js): Run compiled.js using node (notice how the stack trace uses original.js instead of compiled.js):
```
$ node compiled.js $ node compiled.js
original.js:1 original.js:1
@ -119,11 +140,13 @@ Run compiled.js using node (notice how the stack trace uses original.js instead
at Function.Module.runMain (module.js:497:10) at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16) at startup (node.js:119:16)
at node.js:901:3 at node.js:901:3
```
#### TypeScript Demo #### TypeScript Demo
demo.ts: demo.ts:
```typescript
declare function require(name: string); declare function require(name: string);
require('source-map-support').install(); require('source-map-support').install();
class Foo { class Foo {
@ -131,9 +154,11 @@ demo.ts:
bar() { throw new Error('this is a demo'); } bar() { throw new Error('this is a demo'); }
} }
new Foo(); new Foo();
```
Compile and run the file using the TypeScript compiler from the terminal: Compile and run the file using the TypeScript compiler from the terminal:
```
$ npm install source-map-support typescript $ npm install source-map-support typescript
$ node_modules/typescript/bin/tsc -sourcemap demo.ts $ node_modules/typescript/bin/tsc -sourcemap demo.ts
$ node demo.js $ node demo.js
@ -152,19 +177,23 @@ Compile and run the file using the TypeScript compiler from the terminal:
at Function.Module.runMain (module.js:497:10) at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16) at startup (node.js:119:16)
at node.js:901:3 at node.js:901:3
```
#### CoffeeScript Demo #### CoffeeScript Demo
demo.coffee: demo.coffee:
```coffee
require('source-map-support').install() require('source-map-support').install()
foo = -> foo = ->
bar = -> throw new Error 'this is a demo' bar = -> throw new Error 'this is a demo'
bar() bar()
foo() foo()
```
Compile and run the file using the CoffeeScript compiler from the terminal: Compile and run the file using the CoffeeScript compiler from the terminal:
```sh
$ npm install source-map-support coffee-script $ npm install source-map-support coffee-script
$ node_modules/coffee-script/bin/coffee --map --compile demo.coffee $ node_modules/coffee-script/bin/coffee --map --compile demo.coffee
$ node demo.js $ node demo.js
@ -183,6 +212,7 @@ Compile and run the file using the CoffeeScript compiler from the terminal:
at Function.Module._load (module.js:312:12) at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10) at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16) at startup (node.js:119:16)
```
## Tests ## Tests