Update Syncfusion npm Package
30 Jan 20231 minute to read
It is easy to upgrade your Syncfusion npm package to the latest version without uninstalling the packages. The Syncfusion packages can be updated with the help of npm-check-updates package.
Update all Syncfusion npm packages
Refer the below steps to upgrade Syncfusion npm packages.
-
Install the
npm-check-update package
globally to use this as CLI.npm install -g npm-check-updates
-
Run the below command to update npm packages. The below command will filters only Syncfusion packages and update it with latest version. This will update the package.json file with latest version of all
@syncfusion
packages.ncu -u -f /^@syncfusion/
-
Now, run the following commands to update the packages in
node_modules
and remove the duplicate package which is already installed.npm update npm dedupe
Updating a specific npm package
If you want to upgrade only a specific Syncfusion npm package, run the following command.
```bash
npm update @syncfusion/ej2-grids
npm update @syncfusion/ej2-react-grids
npm dedupe
``` > [dedupe](https://docs.npmjs.com/cli/v8/commands/npm-dedupe) searches and deletes the duplicate packages in `node_modules`.