0.2.0 • Published 3 years ago

ninst v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

ninst

A nodejs Library for installing npm modules programatically

Usage

First, install using npm

npm i ninst

Create a new ninst Instance using

const inst = new ninst({
    path: ""
})

Install the dependencies of the project at the specified path. Automatically gets dependencies from package.json in folder if no package is specified

inst.install()
// OR to install specific package
inst.install("package@1.0.0")