https://github.com/creationix/nvm
https://github.com/bower/bower
https://github.com/defunkt/jquery-pjax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install nvm | |
$ curl https://raw.githubusercontent.com/creationix/nvm/v0.19.0/install.sh | bash | |
$ source ~/.nvm/nvm.sh | |
# install npm | |
$ nvm install stable | |
# output: | |
# Version 'stable' not found - try `nvm ls-remote` to browse available versions. | |
$ nvm ls-remote | |
$ nvm install 0.11.14 | |
$ nvm use 0.11.14 | |
$ nvm alias default stable | |
# output: | |
# ! WARNING: Version 'stable' does not exist. | |
# default -> stable (-> N/A) | |
$ nvm alias default 0.11.14 | |
# install bower | |
$ npm install -g bower | |
# install jquery-pjax in project: cd projectdir | |
$ bower init | |
$ bower install jquery-pjax --save | |