Enhances npm with additional configuration and tool management capabilities, including a key-value store for project setups.
test | ||
ts | ||
.gitignore | ||
.gitlab-ci.yml | ||
.snyk | ||
npmextra.json | ||
package-lock.json | ||
package.json | ||
README.md | ||
tslint.json |
@pushrocks/npmextra
do more with npm
Availabililty and Links
Status for master
Usage
Use TypeScript for best in class instellisense.
Using npmextra for managing toolconfigs
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
});
Tools that already use the config feature of npmextra
Using the KeyValueStore
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