This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// List installed global NPM modules | |
npm list -g --depth=0 | |
// Uninstall | |
npm uninstall [module name] -g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Docker Machine | |
------------------------------------------ | |
docker-machine ls | |
docker-machine start [machine-name] | |
docker-machine stop [machine-name] | |
docker-machine env [machine-name] | |
docker-machine ip [machine-name] | |
docker-machine status [machine-name] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://stackoverflow.com/a/50038429/153512 |