flarum-msteams-webhook/js/node_modules/chrome-trace-event
MauBiBot dcca5c22e2 npm build 2026-05-05 19:11:17 +02:00
..
dist npm build 2026-05-05 19:11:17 +02:00
CHANGES.md npm build 2026-05-05 19:11:17 +02:00
LICENSE.txt npm build 2026-05-05 19:11:17 +02:00
README.md npm build 2026-05-05 19:11:17 +02:00
package.json npm build 2026-05-05 19:11:17 +02:00

README.md

Build Status

chrome-trace-event: A node library for creating trace event logs of program execution according to Google's Trace Event format. These logs can then be visualized with trace-viewer or chrome devtools to grok one's 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.