https://github.com/pnpm/npm-conf
Get the npm config
https://github.com/pnpm/npm-conf
Last synced: 10 months ago
JSON representation
Get the npm config
- Host: GitHub
- URL: https://github.com/pnpm/npm-conf
- Owner: pnpm
- License: mit
- Fork: true (kevva/npm-conf)
- Created: 2018-06-16T23:52:54.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T15:51:09.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T00:54:52.642Z (over 1 year ago)
- Language: JavaScript
- Size: 74.2 KB
- Stars: 10
- Watchers: 2
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# @pnpm/npm-conf [](https://travis-ci.com/pnpm/npm-conf)
> Get the npm config
## Install
```
$ pnpm add @pnpm/npm-conf
```
## Usage
```js
const npmConf = require('@pnpm/npm-conf');
const conf = npmConf();
conf.get('prefix')
//=> //=> /Users/unicorn/.npm-packages
conf.get('registry')
//=> https://registry.npmjs.org/
```
To get a list of all available `npm` config options:
```bash
$ npm config list --long
```
## API
### npmConf()
Returns the `npm` config.
### npmConf.defaults
Returns the default `npm` config.
## License
MIT © [Kevin Mårtensson](https://github.com/kevva)