logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Install NPM Dependencies - Clean Install with npm ci | Online Free DevTools by Hexmos

Install NPM dependencies cleanly with npm ci. Ensure consistent builds by installing packages based on package-lock.json. Free online tool, no registration required.

npm-ci

Clean install of npm project dependencies for automated environments. Installs packages based on package-lock.json or npm-shrinkwrap.json. More information: https://docs.npmjs.com/cli/npm-ci.

  • Install project dependencies from package-lock.json or npm-shrinkwrap.json:

npm ci

  • Install project dependencies but skip the specified dependency type:

npm ci --omit {{dev|optional|peer}}

  • Install project dependencies without running any pre-/post-scripts defined in package.json:

npm ci --ignore-scripts

See Also