We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentfb03dba commit3af9efbCopy full SHA for 3af9efb
tutorial/01/index.md
@@ -7,7 +7,7 @@ Running `> npm run setup` will do the following:
7
8
1. Install package dev dependencies
9
2. Create an output directory called "dist"
10
-3. Install "concurrently" &"browser-sync" globally
+3. Install "concurrently","browser-sync" & "browserify" globally
11
4. Run our app in the browser
12
13
You'll find this "setup" script located in your*package.json*.
@@ -19,6 +19,7 @@ We'll be installing several NPM packages from terminal. You may consider install
19
@hint('Open up Bash (terminal) in this project directory and run`npm run setup` to get setup')
20
@hint('If you're using Windows, you may want to use Git Bash')
21
@hint('If your setup fails, try running`sudo npm run setup`')
22
+@hint('Don't forget to`npm install -g concurrently browser-sync browserify`)
23
@action(writeFromFile('package.json', '01/package.json'))
24
25
+ To run the app, simply run`npm start`. Save to continue.