Enhances npm with additional configuration and tool management capabilities, including a key-value store for project setups.
Go to file
2017-03-18 16:23:50 +01:00
dist update to latest standards 2017-03-18 16:23:47 +01:00
test update to latest standards 2017-03-18 16:23:47 +01:00
ts update to latest standards 2017-03-18 16:23:47 +01:00
.gitignore now adheres to standard js 2016-09-16 22:28:38 +02:00
.gitlab-ci.yml update to latest standards 2017-03-18 16:23:47 +01:00
npmextra.json fix npmextra.json not present error 2016-09-25 13:12:16 +02:00
package.json 2.0.4 2017-03-18 16:23:50 +01:00
README.md update to latest standards 2017-03-18 16:23:47 +01:00
tslint.json now adheres to standard js 2016-09-16 22:28:38 +02:00
yarn.lock update to latest standards 2017-03-18 16:23:47 +01:00

npmextra

do more with npm

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

The main purpose of npmextra is to configure different tools using one npmextra.json. This way complex setups avoid additional complexity caused by too many configuration files.

npmextra.json

{
    "sometool": {
        "defaultKey1": "awesomeValueFromConfig"
    }
}
import { Npmextra } from 'npmextra'

let myNpmExtra = new Npmextra('my/path/to/cwd') // cwd argument is optional 
mergedData = myNpmExtra.dataFor(
    'sometool',
    { // gets merged with whatever is in the configfile
        defaultKey1: 'defaultValue1', // so this will get overwritten with "awesomeValueFromConfig"
        defaultKey2: 'defaultValue2' // this one will pass through unaltered
    }
)

For further information read the linked docs at the top of this README.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer