How to Uninstall Node and NPM in Windows?
How to Uninstall Node and NPM in Windows?
There are plenty of useful packages developed for Node, and we still like it for certain uses. So if you want to uninstall NPM and Node in Windows, read this article and do it right now. The easiest way to uninstall Node.js and its package managers, npm, on Windows is by running the following two commands in Command Prompt.
nodejs: install and uninstall package npm
on Jan 01, 1970
// Node.js
// create package.json
% npm init
// install package
% npm install express --save
// Delete package
% npm uninstall express --save
Comments
Post a Comment