About 119,000 results
Open links in new tab
  1. npm check and update package if needed - Stack Overflow

    npm outdated will identify packages that should be updated, and npm update <package name> can be used to update each package. But prior to [email protected], npm update <package name> …

  2. javascript - Node update a specific package - Stack Overflow

    Mar 30, 2017 · Most of the time you can just npm update (or pnpm update or yarn upgrade) a module to get the latest non breaking changes (respecting the semver specified in your …

  3. node.js - How can I update each dependency in package.json to …

    This will update the dependencies in package.json to the latest, based on semantic versioning. To update to the very latest version, you can go with npm-check-updates.

  4. How to update all NPM packages to the latest version compatible …

    Jul 23, 2024 · How am I supposed to update all the packages to the latest version that is compatible for all the projects, respecting the dependencies? With npx npm-check-updates -i, I …

  5. How do I update each dependency in package.json to the latest …

    To make it work, I have to update the dependencies to their newer (but stable) versions. Per How can I update each dependency in package.json to the latest version?, to update dependencies …

  6. How can I update all npm packages/modules at once?

    Nov 5, 2015 · One simple step: $ npx npm-check-updates -u && npm i This will set all of your packages in package.json to the latest version and apply the updates.

  7. How can I update Node.js and npm to their latest versions?

    How to update Node.js To update Node.js itself, I recommend you use nvm (Node Version Manager). Here is the quote from the official npm documentation: We strongly recommend …

  8. npm install vs. update - what's the difference? - Stack Overflow

    Mar 8, 2017 · npm install installs all modules that are listed on package.json file and their dependencies. npm update updates all packages in the node_modules directory and their …

  9. How do I update an NPM module that I published?

    101 I created a NPM module and I published it at version 0.0.1 I made some changes and pushed those to github, and I would like it so that when one uses npm install myModule the new …

  10. What's the difference between tilde(~) and caret(^) in package.json?

    The package manager npm allows installing a newer package version than the one specified. Using tilde (~) gives you bug-fix releases, while caret (^) in addition gives you backward …