Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
root d8c1b4a1be initial 5 anos atrás
..
dist initial 5 anos atrás
.travis.yml initial 5 anos atrás
CHANGES.md initial 5 anos atrás
LICENSE.txt initial 5 anos atrás
Makefile initial 5 anos atrás
README.md initial 5 anos atrás
package.json initial 5 anos atrás
tsconfig.json initial 5 anos atrás

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.