Showing posts with label bower. Show all posts
Showing posts with label bower. Show all posts

Sunday, February 2, 2014

Install nodejs and Grunt in Ubuntu 13.10

You can install the nodejs, bower and Gruntjs using below commands.


  • Install nodejs
      sudo apt-get install npm
  • Install Grunt 
     npm install -g grunt-cli
  • Install bower
 npm install -g bower

After install above libraries run the grunt command.  If you see an error you can run the below commands to overcome in ubuntu 13.10.
sudo apt-get install nodejs 
sudo ln -s /usr/bin/nodejs /usr/bin/node 
curl https://npmjs.org/install.sh | sudo sh