1.0.0 • Published 9 years ago

scan-dependencies v1.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

scan-dependencies Circle CI

Search recursively for require() calls to build a complete dependency tree. It skips core modules and reports only 3rd-party ones.

Installation

$ npm install scan-dependencies --save

Usage

const scan = require('scan-dependencies');

// specify an entrypoint
// it will walk recursively starting from it
let deps = scan('entrypoint.js');

/*
deps = [
  'koa',
  'express',
  'request'
]
 */

Tests

Circle CI

$ make test

License

scan-dependencies is released under the MIT license.