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.
Daniel Hübleitner 615619e6e7 start werk il y a 5 ans
..
dist start werk il y a 5 ans
.travis.yml start werk il y a 5 ans
CHANGES.md start werk il y a 5 ans
LICENSE.txt start werk il y a 5 ans
Makefile start werk il y a 5 ans
README.md start werk il y a 5 ans
package.json start werk il y a 5 ans
tsconfig.json start werk il y a 5 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.