/ninst

A nodejs Library for installing npm modules programitcally

Primary LanguageTypeScriptMIT LicenseMIT

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")