|
|
||||
|---|---|---|---|---|
| .. | ||||
| index.js | 11e3a9652a | %!s(int64=7) %!d(string=hace) años | ||
| license | 11e3a9652a | %!s(int64=7) %!d(string=hace) años | ||
| package.json | 11e3a9652a | %!s(int64=7) %!d(string=hace) años | ||
| readme.md | 11e3a9652a | %!s(int64=7) %!d(string=hace) años | ||
Find the root directory of a Node.js project or npm package
$ npm install --save pkg-dir
/
└── Users
└── sindresorhus
└── foo
├── package.json
└── bar
├── baz
└── example.js
// example.js
const pkgDir = require('pkg-dir');
pkgDir(__dirname).then(rootDir => {
console.log(rootDir);
//=> '/Users/sindresorhus/foo'
});
Returns a Promise for either the project root path or null if it couldn't be found.
Returns the project root path or null.
Type: string
Default: process.cwd()
Directory to start from.
MIT © Sindre Sorhus