1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/pkg-up
zhurui 54669c07cf i4 2023-12-18 13:12:25 +08:00
..
node_modules/find-up i4 2023-12-18 13:12:25 +08:00
index.js i4 2023-12-18 13:12:25 +08:00
license i4 2023-12-18 13:12:25 +08:00
package.json i4 2023-12-18 13:12:25 +08:00
readme.md i4 2023-12-18 13:12:25 +08:00

readme.md

pkg-up Build Status

Find the closest package.json file

Install

$ npm install --save pkg-up

Usage

/
└── Users
    └── sindresorhus
        └── foo
            ├── package.json
            └── bar
                ├── baz
                └── example.js
// example.js
const pkgUp = require('pkg-up');

pkgUp().then(filepath => {
	console.log(filepath);
	//=> '/Users/sindresorhus/foo/package.json'
});

API

pkgUp([cwd])

Returns a Promise for either the filepath or null if it could be found.

pkgUp.sync([cwd])

Returns the filepath or null.

cwd

Type: string Default: process.cwd()

Directory to start from.

  • read-pkg-up - Read the closest package.json file
  • pkg-dir - Find the root directory of an npm package
  • find-up - Find a file by walking up parent directories

License

MIT © Sindre Sorhus