npm list -g --depth=0 | Show all globally installed packages. |
npm uninstall -g <package-name> | Uninstall a global package. |
npm view <package-name> versions | List the available versions of a package. |
npm view <package-name>@1.3.1 dependencies | List the dependencies of a particular version of a package. |
npm info <package-name> | List a shit ton of info about package. |
Remove-Item -Recurse -Force node_modules | Clear the project node modules directory. |
npm config get cache | Find the npm cache directory. |
Remove-Item -Recurse -Force "$env:AppData\npm-cache" | Clear the project node modules directory. |