npm initnpm init -y
Keywords: initialize, package, json, project, setup
npm installnpm install
Keywords: install, dependencies, modules, packages
npm install <package>npm install express --save-dev
Keywords: install, package, dependency, global, dev
npm uninstallnpm uninstall lodash
Keywords: uninstall, remove, package, dependency
npm updatenpm update
Keywords: update, upgrade, latest, version
npm runnpm run build
Keywords: run, script, execute, build, start
npm startnpm start
Keywords: start, run, server, application
npm testnpm test
Keywords: test, testing, run, spec
npm listnpm list --depth=0
Keywords: list, installed, packages, tree, dependencies
npm outdatednpm outdated
Keywords: outdated, check, versions, update
npm auditnpm audit --fix
Keywords: audit, security, vulnerabilities, fix
npm publishnpm publish
Keywords: publish, registry, package, release
npm versionnpm version patch
Keywords: version, bump, semver, patch, minor, major
npm cachenpm cache clean --force
Keywords: cache, clean, clear, verify
npm confignpm config set registry https://registry.npmjs.org/
Keywords: config, configuration, registry, settings
npm linknpm link
Keywords: link, symbolic, local, development, testing
npm searchnpm search express
Keywords: search, find, packages, registry
npm infonpm info express
Keywords: info, information, package, details, metadata
npm cinpm ci
Keywords: ci, clean, install, production, lock
npm prunenpm prune
Keywords: prune, remove, extraneous, clean, modules