![]() |
VOOZH | about |
To update all Node.js dependencies to their latest versions, you can use the npm (Node Package Manager) command-line tool. First, navigate to your project's root directory. Then, run the following command to update all dependencies:
npx npm-check-updates -u
npm install
When you install a package using npm install <packagename>, the latest version is downloaded to the node_modules folder. A corresponding entry is added to package.json and package-lock.json in the current folder. npm determines the dependencies and installs their latest versions as well. To discover new package releases, use npm outdated.
Some of those updates are major releases. Running an npm update won't help here. Major releases are never updated in this way because they (by definition) introduce breaking changes, and npm wants to save you trouble.
Update All Packages to the Latest Version: Our old package.json looks like this:
{
"dependencies": {
"express": "^3.0.0",
"next": "^13.1.4",
"react": "^18.0.0",
"webpack": "5.5.x"
}
}
Leveraging npm-check-updates, you can upgrade all package.json dependencies to the latest version.
npm install -g npm-check-updatesncu -uNote: A slightly less intrusive (avoids a global install) way of doing this if you have a modern version of npm is:
npm install npm-check-updatesAnd then run the update command:
npx npm-check-updates -unpm installAnd, we are with our new updatedpackage.json which is as follows:
{
"dependencies": {
"express": "^4.18.2",
"next": "^13.1.6",
"react": "^18.2.0",
"webpack": "5.75.x"
}
}