node-installer.sh/README.md

98 rivejä
2.1 KiB
Markdown
Raaka Normaali näkymä Historia

2015-12-09 20:40:29 +00:00
# Automated node.js installers for OS X and Ubuntu
2014-12-22 00:10:33 +00:00
2015-12-09 20:40:29 +00:00
A script to install basic development tools for node.js - git, node, gcc, pkg-config, etc
2014-12-22 00:36:52 +00:00
2015-01-26 07:11:42 +00:00
Pick one:
* [OS X](#apple-os-x)
* [Ubuntu Linux](#ubuntu-linux)
* [TL;DR](#tldr)
2015-01-21 02:45:45 +00:00
* [Important Notes](#other-things-you-should-know)
2015-01-21 05:34:04 +00:00
## Screencast
2015-12-09 20:40:29 +00:00
[How to Setup a VPS for node.js Development](https://www.youtube.com/watch?v=ypjzi1axH2A) - [(3:06 installing node.js](https://www.youtube.com/watch?v=ypjzi1axH2A#t=186))
2015-01-21 05:34:04 +00:00
## TL;DR
If you kinda know what you're doing already:
2014-12-22 00:36:52 +00:00
2015-12-09 20:40:29 +00:00
**node.js + dev tools**
2015-01-21 06:33:28 +00:00
2014-12-22 00:36:52 +00:00
```bash
2015-12-09 20:40:29 +00:00
echo "Current node.js version is $(curl -fsSL https://nodejs.org/dist/index.tab | head -2 | tail -1 | cut -f 1)"
2015-01-20 00:18:28 +00:00
curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh
2015-01-20 00:09:36 +00:00
```
2015-12-09 20:40:29 +00:00
**node.js only** (no git, gcc, etc)
2015-01-21 05:39:46 +00:00
```bash
2015-04-22 15:54:59 +00:00
# To install a specific version rather than defaulting to latest
2015-08-22 06:56:35 +00:00
# latest version at time of writing are v1.8.4, v2.5.0, and v3.1.0
echo "v2.5.0" > /tmp/IOJS_VER
2015-04-22 15:54:59 +00:00
2015-12-09 20:40:29 +00:00
# node.js without development dependencies
2015-01-20 00:09:36 +00:00
curl -fsSL bit.ly/iojs-min | bash
2015-01-21 06:33:28 +00:00
# Ubuntu without curl
wget -nv bit.ly/iojs-min -O - | bash
2015-01-08 18:39:49 +00:00
```
2014-12-22 00:36:52 +00:00
## Apple OS X
2015-01-21 05:45:27 +00:00
First you need to **Install XCode Command Line Tools**
2015-01-21 05:39:46 +00:00
```bash
xcode-select --install
```
2015-01-21 05:45:27 +00:00
Then you need to **Accept the XCode License** by running any command installed by Xcode with sudo. We'll use git.
2015-01-21 05:39:46 +00:00
```bash
sudo git --version
```
You can scroll to the bottom by hitting shift+G (capital G).
2015-01-15 22:59:32 +00:00
Type `agree` and hit enter to accept the license.
2015-01-15 22:59:32 +00:00
2015-12-09 20:40:29 +00:00
Now you can install node.js
2014-12-22 00:36:52 +00:00
2015-01-08 18:39:49 +00:00
```bash
curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh
2014-12-22 00:36:52 +00:00
```
*TODO*: Make it easier to accepting the license (automatic?)
## Ubuntu Linux
2015-01-21 05:39:46 +00:00
```bash
wget -nv bit.ly/iojs-dev -O /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh
```
## Other things you should know
2014-12-22 00:36:52 +00:00
This is what gets installed:
* rsync
* curl
* wget
* git
2015-01-08 18:27:16 +00:00
* xcode / brew / build-essential / pkg-config / gcc
2015-12-09 20:40:29 +00:00
* node (including npm)
2014-12-22 00:36:52 +00:00
* jshint
2015-01-08 18:17:15 +00:00
2015-01-15 22:59:12 +00:00
**NOTE**: If `fail2ban` is not already securing ssh, you will be asked to install it.
2015-01-15 22:57:43 +00:00
2015-01-08 18:23:34 +00:00
Front-End Extras
================
2015-01-08 18:17:15 +00:00
These are **not installed**, but you may wish to use them if you're doing front-end work as well
2014-12-22 00:36:52 +00:00
* bower
* uglifyjs
* yo
* jade
* less