1.0.0 • Published 9 years ago

find-node-modules-down v1.0.0

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

find-node-modules-down Build Status

Similar to find-node-modules but the other way round. Will find every child node_modules directory.

Install

$ npm install --save find-node-modules-down

Usage

var findModulesDown = require('find-node-modules-down');

findModulesDown();
//=> ['node_modules', 'something/node_modules', 'something/node_modules/node_modules']

findModulesDown('something');
//=> ['something/node_modules', 'something/node_modules/node_modules']

It's very simple.

It will return absolute paths if given an absolute path, or relative paths if given a relative path (and it defaults to ".").

License

Released under MIT license.