This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/chrome-trace-event
cranberry ed23347e56 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
..
dist Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
.travis.yml Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
CHANGES.md Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
LICENSE.txt Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
Makefile Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
README.md Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
package.json Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
tsconfig.json Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00

README.md

Build Status

chrome-trace-event: A node library for creating trace event logs of program execution according to Googles Trace Event format. These logs can then be visualized with trace-viewer or chrome devtools to grok ones programs.

Install

npm install chrome-trace-event

Usage

const Trace = require("chrome-trace-event").Tracer;
const trace = new Trace({
    noStream: true
});
trace.pipe(fs.createWriteStream(outPath));
trace.flush();

Links

License

MIT. See LICENSE.txt.