node-installer.sh/README.md

98 строки
2.2 KiB
Markdown
Исходник Обычный вид История

2015-01-14 09:33:38 +00:00
# iojs-install-script
2014-12-22 00:10:33 +00:00
A script to install basic development tools for io.js - the new node.js - git, iojs, gcc, pkg-config, etc
2014-12-22 00:36:52 +00:00
2015-01-21 02:45:45 +00:00
* [Instructions for OS X](#apple-os-x)
* [Instructions for Ubuntu Linux](#ubuntu-linux)
2015-01-21 02:46:12 +00:00
* [Instructions for 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
[How to Setup a VPS for io.js Development](https://www.youtube.com/watch?v=ypjzi1axH2A) - [(3:06 installing io.js](https://www.youtube.com/watch?v=ypjzi1axH2A#t=186))
## TL;DR
If you kinda know what you're doing already:
2014-12-22 00:36:52 +00:00
```bash
2015-01-14 09:43:38 +00:00
echo "v1.0.1" > /tmp/IOJS_VER
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
```
Or, if you don't need any developer tools and you *just* want io.js
2015-01-21 05:39:46 +00:00
```bash
2015-01-20 00:09:36 +00:00
# Or if you don't need any development tools
echo "v1.0.1" > /tmp/IOJS_VER
2015-01-20 00:09:36 +00:00
curl -fsSL bit.ly/iojs-min | bash
2015-01-08 18:39:49 +00:00
```
2014-12-22 00:36:52 +00:00
## Apple OS X
First you need to install X Code Tools
2015-01-21 05:39:46 +00:00
```bash
xcode-select --install
```
Then you need to *Accept the 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
Now you can install io.js (the new node.js)
2014-12-22 00:36:52 +00:00
2015-01-08 18:39:49 +00:00
```bash
# Specify the version of iojs to install
echo "v1.0.1" > /tmp/IOJS_VER
# And install away!
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
# Specify the version of iojs to install
echo "v1.0.1" > /tmp/IOJS_VER
# And install away!
wget -nv bit.ly/iojs-dev -O /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh
```
## Other things you should know
**NOTE**: If you have node installed, this script will rename it so that it isn't overwritten by the iojs installer.
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-01-14 09:43:38 +00:00
* iojs (including npm and node symlink)
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