Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit před 3 roky
..
dist First Commit před 3 roky
.travis.yml First Commit před 3 roky
CHANGES.md First Commit před 3 roky
LICENSE.txt First Commit před 3 roky
Makefile First Commit před 3 roky
README.md First Commit před 3 roky
package.json First Commit před 3 roky
tsconfig.json First Commit před 3 roky

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.