tree: b51debdac2193a433474098ca7529bad79e0ed99 [path history] [tgz]
  1. test/
  2. .npmignore
  3. .travis.yml
  4. LICENSE
  5. package.json
  6. read-installed.js
  7. README.md
src/cobalt/debug/remote/devtools/node_modules/read-installed/README.md

read-installed

Read all the installed packages in a folder, and return a tree structure with all the data.

npm uses this.

2.0.0

Breaking changes in 2.0.0:

The second argument is now an Object that contains the following keys:

  • depth optional, defaults to Infinity
  • log optional log Function
  • dev optional, default false, set to true to include devDependencies

Usage

var readInstalled = require("read-installed")
// optional options
var options = { dev: false, log: fn, depth: 2 }
readInstalled(folder, options, function (er, data) {
  ...
})