npm-cache-path
v2.0.0
Published
Get the path of npm cache folder
Maintainers
Readme
npm-cache-path
Get the path of npm cache folder
const npmCachePath = require('npm-cache-path');
(async () => {
await npmCachePath(); //=> '/Users/shinnn/.npm'
})();Installation
npm install npm-cache-pathAPI
const npmCachePath = require('npm-cache-path');npmCachePath()
Return: Promise<string>
It tries to get the path of npm cache folder, first from the environment variables, second from the stdout of npm config get cache command.
// npm_config_cache=/foo/bar node ./example.js
(async () => {
await npmCachePath(); //=> '/foo/bar'
})();License
ISC License © 2018 Shinnosuke Watanabe
