Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reklatsmasters/trace-inline
A better --trace-inlining
https://github.com/reklatsmasters/trace-inline
crankshaft debug dev devtools inline inlining inspect inspector js node perf perfomance tools trace v8
Last synced: about 2 months ago
JSON representation
A better --trace-inlining
- Host: GitHub
- URL: https://github.com/reklatsmasters/trace-inline
- Owner: reklatsmasters
- License: mit
- Created: 2017-02-14T22:47:53.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-19T20:46:31.000Z (almost 8 years ago)
- Last Synced: 2024-11-14T18:23:32.645Z (2 months ago)
- Topics: crankshaft, debug, dev, devtools, inline, inlining, inspect, inspector, js, node, perf, perfomance, tools, trace, v8
- Language: JavaScript
- Size: 30.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.md
Awesome Lists containing this project
README
## trace-inline [![npm](https://img.shields.io/npm/v/trace-inline.svg)](https://npmjs.org/package/trace-inline) [![license](https://img.shields.io/npm/l/trace-inline.svg)](https://npmjs.org/package/trace-inline) [![downloads](https://img.shields.io/npm/dm/trace-inline.svg)](https://npmjs.org/package/trace-inline)
A better --trace-inlining
```sh
>trace-inline -h
USAGE: trace-inlineOptions:
-h, --help Show help [boolean]
-v, --version Show version number [boolean]
-r, --reporter [choices: "tape", "tree", "pass"] [default: "tree"]
```
### ReportersJust pass your script as an argument and `trace-inline` will show you pretty human-readable output `trace-inline index.js`.
![tree](fixtures/tree-windows.png)
You can use any formatter you want to process the TAP output (`-r tape`).
![tape](fixtures/tape-windows.png)
or get raw unparsed data (`-r pass`)
![pass](fixtures/pass-windows.png)
You can pass an additional arguments after `--`: `trace-inline -- --harmony-tailcalls index.js`
## Related
* [trace-inline-parse](https://github.com/ReklatsMasters/trace-inline-parse) - parser of `--trace-inlining` output from crankshaft
## License
MIT, 2017 (c) Dmitry Tsvettsikh