文件名称:pkg-dir:查找Node.js项目或npm包的根目录
文件大小:6KB
文件格式:ZIP
更新时间:2024-06-14 21:13:01
JavaScript
pkg目录 查找Node.js项目或npm包的根目录 安装 $ npm install pkg-dir 用法 / └── Users └── sindresorhus └── foo ├── package.json └── bar ├── baz └── example.js // example.js const pkgDir = require ( 'pkg-dir' ) ; ( async ( ) => { const rootDir = await pkgDir ( __dirname ) ; console . log ( rootDir ) ; //=> '/Users/sindresorhus/foo' } ) ( ) ; 原料
【文件预览】:
pkg-dir-main
----.gitignore(23B)
----package.json(851B)
----.npmrc(19B)
----index.js(371B)
----test.js(602B)
----.github()
--------security.md(179B)
--------workflows()
--------funding.yml(113B)
----license(1KB)
----fixture()
--------.gitkeep(0B)
----readme.md(1KB)
----index.test-d.ts(209B)
----.gitattributes(19B)
----.editorconfig(175B)
----index.d.ts(995B)