Basisinstallation Grunt auf Debian
Ich möchte grunt verwenden um CSS und JS Dateien zu minimieren und zusammenzufassen. Die Installation von grunt setzt einige Packete vorraus die ich nach dieser Anleitung so installiert haben.
Zuerst die Installation von git
sudo apt-get update sudo apt-get install git-core curl build-essential openssl libssl-dev
Dann node.js
git clone https://github.com/joyent/node.git cd node ./configure make sudo make install
Dann npm und Grunt
curl https://npmjs.org/install.sh | sudo sh npm install -g grunt-cli