- Global Installation of npm-check-updates
- Updating npm Packages in node_modules
- Updating a specific npm package
Contact Support
Update Syncfusion npm package
31 Jan 20251 minute to read
Keeping your Syncfusion npm packages up-to-date ensures you are using the latest features and security updates. This guide will take you through the steps to update these packages using the npm-check-updates
tool.
Global Installation of npm-check-updates
First, install the npm-check-updates
package globally. This tool helps you check for updates and can be used as a CLI tool.
Steps to Install:
- Open the terminal or command prompt.
-
Run the following command to install:
npm install -g npm-check-updates
-
To update all
@syncfusion
packages to their latest versions, execute:ncu -u -f /^@syncfusion/
This modifies your
package.json
file, setting the version of all@syncfusion
packages to their latest available.
Updating npm Packages in node_modules
Once your package.json
has been updated, follow these steps to update the packages installed in node_modules
and clean up any duplicate packages:
-
Run the update command to synchronize your local package installations:
npm update
-
Use the dedupe command to remove any duplicate packages:
npm dedupe
Updating a specific npm package
Run the following commands from the command prompt in the application root to update a specific npm package in node_modules
and remove the installed duplicate package.
npm update @syncfusion/ej2-grids
npm update @syncfusion/ej2-angular-grids
npm dedupe