npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

scan-dependencies

1.0.0

@vdemedes

npmHomeRepoSnykSocket
Downloads:14
$ npm install scan-dependencies
DailyWeeklyMonthlyYearly

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.