Grunt (The JavaScript Task Runner) is an automation tool to perform repetitive tasks like compilation, unit testing etc. Grunt has a long list of plugin to perform tasks provided by its community. In this tutorial you will learn how to install Grunt & Grunt-cli on Ubuntu, Debian and LinuxMint systems.
1. Install Node.js & NPM
If you already have node.js and npm installed on your system skip this step. Elase you need to install node.js on your system first. Use following set of commands to add node.js ppa in your Ubuntu system and install it.
$ sudo apt-get install python-software-properties $ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - $ sudo apt-get install nodejs
Make sure you have successfully installed node.js and npm on your system
$ node --version $ npm --version
2. Install Grunt using NPM
Now use following command to install grunt and grunt cli using npm command line utility.
$ sudo npm install -g grunt
After successful installation make sure grunt has been installed successful and check version.
$ grunt --version grunt-cli v1.2.0
Thanks for Visit Here
Comments
Post a Comment