5
0
node-binaries/node/node_modules/npm-js-interface/README.md
2024-03-09 23:19:09 +08:00

20 lines
390 B
Markdown

# npm-js-interface
> Run NPM commmand directly in JS !
Thanks for [npm/cli: the package manager for JavaScript (github.com)](https://github.com/npm/cli)
## Usage
1. Run `npm install npm-js-interface` to install
2. ```javascript
let npm = require('npm-js-interface');
```
3. ```javascript
npm("npm help");
npm("npm list");
npm("npm install hello-world");
//...
```