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
To enable autosave in Atom, goto*Atom* >*Preferences* >*Packages* > search for*"autosave"* >*settings* > check*"enabled"*.
24
+
You may also wanttoinstall[terminal-plus](https://atom.io/packages/terminal-plus) used in the example above.
25
25
26
-
* If CodeRoad is unavailable under*Atom* >*Packages*>*CodeRoad*, restartorreload atom.
26
+
Toggle open*Atom-CodeRoad* using the*Packages*menuorpress*ctrl-alt-0*.
27
27
28
-
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.
29
28
30
-
* Windows & Linux: alt-ctrl-r
31
-
* Mac: ctrl-alt-cmd-l
32
29
33
-
###Install aTutorial
30
+
###Tutorial
34
31
35
32
To install a tutorial, setup a*package.json* file and save the tutorial as a dependency. Make sure[NodeJS](nodejs.org) is already installed.
36
33
37
-
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.
34
+

35
+
36
+
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.
38
37
39
-
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 first screen.
38
+
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 first screen.