Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pnpm/npm-conf
Get the npm config
https://github.com/pnpm/npm-conf
Last synced: 3 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 (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-12-07T12:59:47.000Z (11 months ago)
- Last Synced: 2024-04-14T01:14:41.256Z (7 months ago)
- Language: JavaScript
- Size: 93.8 KB
- Stars: 8
- Watchers: 2
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# @pnpm/npm-conf [![Build Status](https://travis-ci.com/pnpm/npm-conf.svg?branch=master)](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-packagesconf.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)