https://github.com/kaizhu256/node-install
shell script to install nodejs on vanilla linux vm
https://github.com/kaizhu256/node-install
Last synced: about 2 months ago
JSON representation
shell script to install nodejs on vanilla linux vm
- Host: GitHub
- URL: https://github.com/kaizhu256/node-install
- Owner: kaizhu256
- Created: 2014-12-20T04:37:43.000Z (over 10 years ago)
- Default Branch: gh-pages
- Last Pushed: 2014-12-25T08:55:55.000Z (over 10 years ago)
- Last Synced: 2025-01-17T14:52:04.016Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 242 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
node-install [](https://travis-ci.org/kaizhu256/node-install)
============
shell script to install nodejs on vanilla linux vm
## usage example
```
# download and install nodejs to $HOME/bin
eval "$(curl -fLSs http://kaizhu256.github.io/node-install/node-install.sh)"
# add $HOME/bin to $PATH
export PATH=$HOME/bin:$PATH
# test nodejs
node -e "console.log(process.version)"
```## package content
- .travis.yml
- travis-ci config file
- README.md
- readme file
- node-install.sh
- shell script installing nodejs## todo
- none## changelog
#### 2014.12.21
- initial commit