snoop-bundle-deps

1.0.2 • Public • Published

snoop-bundle-deps

stable

Finds all npm modules used by a browserify bundle.

var snoop = require('snoop-bundle-deps')
var fs = require('fs')
 
var bundle = fs.readFileSync(__dirname+'/bundle.js')
 
//get an array of public npm dependencies used in bundle
snoop(bundle, function(err, deps) {
  if (err) throw err
  console.log(deps)
  // -> ['eases', 'object-assign', 'url', 'xtend']
})

Ignores relative requires, de-duplicates paths like "xtend/mutable.js" to their base packages, and filters out any modules that cannot be found on npm. Uses a cache to avoid querying the database for popular module names.

Can also be used via CLI:

snoop-bundle-deps -p < my-svg-app.js
dependencies [5]
├── abs-svg-path
├── adaptive-bezier-curve
├── normalize-svg-path
├── svg-path-contours
└── vec2-copy

Usage

NPM

API

snoop(src, [opt], callback)

Snoops the src bundle. Options are passed to filter-npm-modules, but using a default cache to avoid common DB queries.

Calls the function with (err, deps) where deps is an array of sorted and de-duplicated npm package names.

CLI

The CLI takes a bundle in stdin and writes JSON array to stdout. Or, you can pretty-print with shell pipes.

Usage:
  snoop-bundle-deps [opts] < bundle.js

Options:
  --pretty, -p   pretty-print the results

in the wild

This could even be used for minified bundles in the wild. For example, as of April 2015, Yahoo Play is using roughly 77 public npm modules in its primary bundle.

curl https://screen.yahoo.com/play/bundle.js | snoop-bundle-deps -p
dependencies [77]
├── asn1.js
├── asn1.js-rfc3280
├── async-cache
├── base64-js
├── blast-text
├── bn.js
├── brorand
├── browserify-aes
├── browserify-rsa
  ...

(full list)

This will not work on modules compressed with bundle-collapser.

Related:

License

MIT, see LICENSE.md for details.

Package Sidebar

Install

npm i snoop-bundle-deps

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • mattdesl