Install nodejs on ubuntu Get link Facebook X Pinterest Email Other Apps March 15, 2013 When installing nodejs on Ubuntu 12.10, it was not working right away sudo apt-get install nodejs npm I had to add a link to have 'node' (and not only nodejs) in my path sudo ln -s /usr/bin/nodejs /usr/local/bin/node Read more
Install & run jshint on the command line Get link Facebook X Pinterest Email Other Apps March 15, 2013 For ubuntu/linux, assuming you have nodejs installed sudo npm install -g jshint Then run jshint on your javascript file jshint yourjsfile.js Read more