You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/atom-coderoad/2016-01-02-installation.md
+32-9Lines changed: 32 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,36 @@ To play a **tutorial**, you'll only need **Atom-CodeRoad**.
12
12
13
13
Atom CodeRoad has several key dependencies before starting:
14
14
15
-
***NodeJS** > 0.10.x. Check your version with`> node -v`.
16
-
- download a newer version[here](https://nodejs.org).
17
-
***NPM** 3.x+. Check your version with`> npm -v`.
18
-
- NPM comes installed with NodeJS
19
-
- update with`> npm install -g npm`
20
-
***Atom Editor**
21
-
- A popular code editor available at[Atom.io](https://atom.io/)
15
+
<divclass="table-wrapper">
16
+
<table>
17
+
<thead>
18
+
<tr>
19
+
<th>Name</th>
20
+
<th>Min Version</th>
21
+
<th>Description</th>
22
+
</tr>
23
+
</thead>
24
+
<tbody>
25
+
<tr>
26
+
<td>NodeJS</td>
27
+
<td>>0.10.x</td>
28
+
<td>Check your version with `> node -v`.<br />
29
+
Download the latest from <a href="//nodejs.org">nodejs.org</a>.</td>
30
+
</tr>
31
+
<tr>
32
+
<td>NPM</td>
33
+
<td>>3.x.x</td>
34
+
<td>Check your version with `> npm -v`.<br />NPM comes installed with NodeJS, and can be updated with `> npm install -g npm`.</td>
35
+
</tr>
36
+
<tr>
37
+
<td>Atom Editor</td>
38
+
<td>>1.6.0+</td>
39
+
<td>A popular code editor available at <a href="//atom.io">Atom.io</a></td>
40
+
</tr>
41
+
</tbody>
42
+
</table>
43
+
</div>
44
+
22
45
23
46
###Install
24
47
@@ -37,9 +60,9 @@ To install a tutorial, setup a *package.json* file and save the tutorial as a de
37
60
38
61
{: .gif}
39
62
40
-
You can setup a project quickly by typing`npm init --y` into the command line in your project's folder. This agrees to all of the defaults for your newly created*package.json* file.
63
+
You can setup a project quickly by typing`>npm init --y` into the command line in your project's folder. This agrees to all of the defaults for your newly created*package.json* file.
41
64
42
-
Now you can install a tutorial. Run`npm install --save-dev $THE-PACKAGE-NAME$` to save the tutorial as a package development dependency. If you run*Atom-CodeRoad* you should see the tutorial appear on the tutorial list screen.
65
+
Now you can install a tutorial. Run`>npm install --save-dev $THE-PACKAGE-NAME$` to save the tutorial as a package development dependency. If you run*Atom-CodeRoad* you should see the tutorial appear on the tutorial list screen.
43
66
44
67
>If you are stuck at a screen that says 'install a tutorial', try updating your version of NPM to 3.x+.