node.js - How to relocate global packages? -
in process of getting familiar npm, ive installed bunch of stuff globally, including angular cli - users directory on windows (c:\users...)
how can either relocate directory or uninstall , reinstall different folder?
you 1 one by
npm uninstall angular-cli npm -g install angular-cli
without -g
interact current directory package.json while -g
globally (your %user_profile%)
wiki
Comments
Post a Comment