Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit il y a 3 ans
..
dist First Commit il y a 3 ans
.travis.yml First Commit il y a 3 ans
CHANGES.md First Commit il y a 3 ans
LICENSE.txt First Commit il y a 3 ans
Makefile First Commit il y a 3 ans
README.md First Commit il y a 3 ans
package.json First Commit il y a 3 ans
tsconfig.json First Commit il y a 3 ans

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.