When installing a node package using sudo npm link in the package\'s directory, how can I uninstall the package once I\'m done with development?
n
If you've done something like accidentally npm link generator-webapp after you've changed it, you can fix it by cloning the right generator and linking that.
git clone https://github.com/yeoman/generator-webapp.git;
# for fixing generator-webapp, replace with your required repository
cd generator-webapp;
npm link;