#!/bin/bash # Uninstall all Global modules from NPM # http://stackoverflow.com/questions/9283472/command-to-remove-all-npm-modules-globally npm -g ls | grep -v 'npm@' | awk '/@/ {print $2}' | awk -F@ '{print $1}' | xargs npm -g rm