1.0.0 • Published 6 years ago

loadtime v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

loadtime

Build Status NPM

Measure how long it takes to load an npm module in node

Install

$ npm install --save --global loadtime

Usage

$ loadtime express
#=> 59.194509ms

$ loadtime bluebird
#=> 26.245871ms

API

loadtime(module)

Returns a Promise which will eventually resolve the duration it took to load the provided module in milliseconds.

const loadtime = require('loadtime');

loadtime('axios').then((time)=> {
    console.log(time);
    //=> 25.811197
})

License

MIT © Daniel Kalen