nanosecond-timer
v1.0.2
Published
A simple C++ addon to monitor execution timing
Readme
nanosecond-timer
A simple C++ nodejs addon to monitor execution timing.
Installing
A step by step series of examples that tell you how to get a development env running
Say what the step will be
npm i nanosecond-timerExample
const timer = require('nanosecond-timer')
timer.start();
// code
timer.end();
console.log(timer.diff() + " nanosec");