Skip to content
This repository was archived by the owner on Feb 19, 2022. It is now read-only.

Clarifying the install process #13

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,25 @@ An interactive guide to ES6

[live site](http://projects.formidablelabs.com/es6-interactive-guide/)

Running the page locally:

### Running the page locally:

First you have to get a copy of this project ,to do so you have tow options

Option1 :
- click on the download button, so you get a **es6-interactive-guide-master.zip** file
- extract the zip file
- cd to the extracted_folder

Option2(assuming that you have git already installed on your machine) :
- ``git clone https://github.com/FormidableLabs/es6-interactive-guide.git``
- cd es6-interactive-guide

Now you are sure you're inside the **es6-interactive-guide**(you can name this folder whatever you want)folder, so you're ready to install all the dependencies :


```
npm install
npm install // in some cases you have to add sudo before
webpack // add --watch if you like
// open index.html in browser
```
```