chrome-trace-event

WebJar for chrome-trace-event

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

chrome-trace-event
Last Version

Last Version

1.0.2
Release Date

Release Date

Type

Type

jar
Description

Description

chrome-trace-event
WebJar for chrome-trace-event
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/samccone/chrome-trace-event

Download chrome-trace-event

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/chrome-trace-event/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>chrome-trace-event</artifactId>
    <version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/chrome-trace-event/
implementation 'org.webjars.npm:chrome-trace-event:1.0.2'
// https://jarcasting.com/artifacts/org.webjars.npm/chrome-trace-event/
implementation ("org.webjars.npm:chrome-trace-event:1.0.2")
'org.webjars.npm:chrome-trace-event:jar:1.0.2'
<dependency org="org.webjars.npm" name="chrome-trace-event" rev="1.0.2">
  <artifact name="chrome-trace-event" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='chrome-trace-event', version='1.0.2')
)
libraryDependencies += "org.webjars.npm" % "chrome-trace-event" % "1.0.2"
[org.webjars.npm/chrome-trace-event "1.0.2"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : tslib jar [1.9.0,2)

Project Modules

There are no modules declared in this project.

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.

Versions

Version
1.0.2
1.0.0
0.1.3
0.1.2