# Simple node.js interim logging function
###### (uses `process.hrtime`)
```js
// Create the timeline
const timeline = new Timeline("timeline label here");
// add to the timeline
timeline.add("time label here");
// log the timeline
timeline.log();
```
The returned time is determined by the previous timeline item. For example if the time between item 1 & item 2 was 100ms, item 2 will be 100ms.
Example:
![Request Test](https://cdn.jeremyjaydan.io/cdn/mdi/request-test.png)