2.0.1 • Published 3 months ago

dependency-stream v2.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 months ago

dependency-stream

Analyse and list all dependencies of an entrypoint as a stream

npm install dependency-stream

Usage

const DependencyStream = require('dependency-stream')

const d = new DependencyStream(drive, {
  entrypoint: '.', // thats the entrypoint to resolve
  preload: true, // preload as much as possible
  source: false, // include source in results
  strict: false, // if true, fail if something cannot be resolved
  conditions: [], // what conditions to apply to export maps
  builtins: setOrArray // set to the builtin modules of your runtime
})

for await (const data of d) {
  console.log(data) // the resolved dep
}

License

Apache-2.0

2.0.1

3 months ago

2.0.0

3 months ago

1.1.0

4 months ago

1.0.0

4 months ago

0.0.0

4 months ago