You can uninstall the node modules in the following ways
Uninstall the package
npm uninstall <Package Name>
Uninstall the package and remove it from dependencies in package.json
npm uninstall <Package Name> --save
Uninstall the package and remove it from dev dependencies in package.json
npm uninstall <Package Name> --save-dev
Uninstall a global package. Global packages can be accessed anywhere throughout the system, not limited to a specific project
npm uninstall -g <Package Name>