Perf-marks
The simplest and lightweight solution for User Timing API in Javascript. Simple how it should be.
Setup and installation
Make sure that you are using the NodeJS version is the same as .nvmrc
file version. If you don't have this version please use a version manager such as nvm
or n
to manage your local nodejs versions.
Please make sure that you are using NodeJS version 6.10.2
Assuming that you are using nvm
, please run the commands inside this folder:
$ nvm install $(cat .nvmrc);
$ nvm use $(cat .nvmrc);
$ npm install
In Windows, please install NodeJS using one of these options:
Via NVM Windows
package: Dowload via this link. After that, run the commands:
$ nvm install $(cat .nvmrc);
$ nvm use $(cat .nvmrc);
$ npm install
Via Chocolatey:
$ choco install nodejs.install -version 6.10.2
Demo
Try out the demo!
Run the app
$ npm start
Run the tests
$ npm test
Run the build
$ npm run build
PerfMarks
This service exposes a few different methods with which you can interact with feature toggle service.
PerfMarks.start(markName)
Adds the user timing api marker instrumentation in your application.
PerfMarks.end(markName)
Returns the results for the specified marker
PerfMarks.clear(markName)
Removes the specified marker
PerfMarks.clearAll()
Removes all the marker
Publish
this project is using np
package to publish, which makes things straightforward. EX: np <patch|minor|major>
For more details, please check np package on npmjs.com
Author
Wilson Mendes (willmendesneto)