loadtime

1.0.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i loadtime

Weekly Downloads

0

Version

1.0.0

License

ISC

Unpacked Size

4.3 kB

Total Files

7

Last publish

Collaborators

  • danielkalen