1. load-perf
Check load performance of your module and its dependencies
load-perf
Package: load-perf
Created by: gyandeeps
Last modified: Sun, 19 Jun 2022 13:12:25 GMT
Version: 0.2.0
License: MIT
Downloads: 5,503
Repository: https://github.com/gyandeeps/load-perf

Install

npm install load-perf
yarn add load-perf

NPM version
Build Status

load-perf

Idea

Main idea here is to measure the load(require) time for dependencies and devDependencies for your project or module. we also calculate the load(require) time of your module.
This give an idea about how much time would it take for your module to be required by the consumer.

Key points:

  • Measure load performance of your module when its required
  • Measure load performance of your dependencies
  • Measure load performance of your devDependencies

How to use

Just install the module

 npm install load-perf -g

Then just run the module on your project or module

 load-perf

Options

   -h, --help                  Show help.
  -v, --version               Outputs the version number.
  -p, --package path::String  Package json file path. - default: ./package.json
  -d, --checkDevDependencies  Perf calculation for devDependencies. - default: false
  --no-checkDependencies      Perf calculation for dependencies. - default: true

NodeJs API

You can consume this module programmatically through the Node.js API also.

 var loadPerf = require("load-perf");

var defaultOptions = {
    package: "./package.json",
    checkDevDependencies: false,
    checkDependencies: true
};

var performanceData = loadPerf(defaultOptions);

Even if the options are not supplied to the function, we will use the defaults.

Output Example

All times are in ms.

 $ load-perf
Dependencies:
chalk                  :   21.332987
concat-stream          :   16.36361
debug                  :   13.844468
doctrine               :   10.851406
escape-string-regexp   :   1.946993
escope                 :   67.604855
espree                 :   17.298621
estraverse             :   3.452687
estraverse-fb          :   8.504899
glob                   :   18.858194
globals                :   3.553849
handlebars             :   62.334192
inquirer               :   101.852429
file-entry-cache       :   1.86819
is-my-json-valid       :   9.402158
is-resolvable          :   2.927087
js-yaml                :   47.601996
lodash.clonedeep       :   20.422166
lodash.merge           :   25.618057
lodash.omit            :   23.293907
minimatch              :   6.914903
mkdirp                 :   1.686758
object-assign          :   1.593661
optionator             :   27.581543
path-is-absolute       :   1.661102
path-is-inside         :   1.762264
shelljs                :   37.127746
strip-json-comments    :   1.587796
text-table             :   1.437153
to-double-quotes       :   1.988777
to-single-quotes       :   1.725977
user-home              :   1.437153
xml-escape             :   1.249491

Module load time: 278.161939

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin