Skip to content
This repository has been archived by the owner on Jul 28, 2021. It is now read-only.
/ do-you-even-lift Public archive

Calculate package sizes in various configurations

License

Notifications You must be signed in to change notification settings

npm/do-you-even-lift

Repository files navigation

do-you-even-lift npm version license Travis AppVeyor Coverage Status

do-you-even-lift is a Node.js library for calculating how big a specific package might be once bundled and compressed. It's built on top of pacote and so will accept any valid package specifier for extraction.

Install

$ npm install do-you-even-lift

Example

const liftMeBro = require('do-you-even-lift')

liftMeBro('react').then(console.log)
// =>
{
  unpackedSize: 119169,
  bundleSize: 55615,
  minifiedBundleSize: 19747,
  gzippedBundleSize: 15783,
  gzippedMinifiedBundleSize: 7090,
  bundleTime: 1242
}