@@ -7,7 +7,7 @@ Use [CodeRoad CLI](https://github.com/coderoad/coderoad-cli) to setup and build
7
7
8
8
* Install * CodeRoad-CLI* . Make sure [ NodeJS] ( nodejs.org ) is already installed
9
9
10
- > npm install -g coderoad-cli
10
+ ` > npm install -g coderoad-cli`
11
11
12
12
13
13
### Create
@@ -16,7 +16,7 @@ Get setup quickly with CodeRoad: either [clone a tutorial repo](https://git-scm.
16
16
17
17
In your development directory, run ** create** with your new package name.
18
18
19
- > coderoad create $YOUR-PACKAGE-NAME$
19
+ ` > coderoad create $YOUR-PACKAGE-NAME$`
20
20
21
21
Running ** create** generates:
22
22
@@ -47,13 +47,13 @@ We'll learn more about these configurations when it's time to [publish](#publish
47
47
48
48
Update changes to your tutorial by running ** build** . This will generate a * coderoad.json* data file used by * atom-coderoad* .
49
49
50
- > coderoad build
50
+ ` > coderoad build`
51
51
52
52
### Demo Your Tutorial
53
53
54
54
Open a new directory for demoing your tutorial. Setup a new NPM project file.
55
55
56
- > npm init
56
+ ` > npm init`
57
57
58
58
Add your package name to the ` dependencies ` in ` package.json ` :
59
59
@@ -73,19 +73,19 @@ Normally you would use `npm install` to install the package, but your package is
73
73
74
74
Inside of your tutorial root directory, run link.
75
75
76
- > npm link
76
+ ` > npm link`
77
77
78
78
Inside of your demo root directory, connect the link.
79
79
80
- > npm link coderoad-$YOUR-PACKAGE-NAME$
81
- > npm install
80
+ ` > npm link coderoad-$YOUR-PACKAGE-NAME$`
81
+ ` > npm install`
82
82
83
83
84
84
### Using Atom
85
85
86
86
Open * Atom-Coderoad* to view your tutorial. Your package should appear as a loaded package. Click on it.
87
87
88
- ![ CodeRoad Loaded Packages] ( /img/docs/loaded-packages.png )
88
+ ![ CodeRoad Loaded Packages] ( https://coderoad.github.io /img/docs/loaded-packages.png)
89
89
90
90
Reload * Atom* to view changes. You can use the Atom [ command-palette] ( https://atom.io/docs/latest/getting-started-atom-basics#command-palette ) to find "reload" or simply use the reload hot-key.
91
91
0 commit comments