How do I install JSLint on Ubuntu? [closed]
How to install JSLint on Ubuntu: Install nodejs (includes npm, the Node Package Manager): sudo apt-get install nodejs Install node-jslint. either globally: sudo npm install -g jslint or locally, and include it in $PATH: npm install jslint and add this line to your.bashrc (adjust version number as appropriate) alias jslint=”~/.npm/jslint/0.1.8/package/bin/jslint.js”