-
Notifications
You must be signed in to change notification settings - Fork 293
Setup
Ruslan Kyba edited this page Mar 6, 2017
·
17 revisions
You can start by cloning one the latest versions (see Branches section) of ARc (Atomic React) on your local machine by running:
$ git clone -o arc -b master --single-branch \
https://github.com/diegohaz/arc.git MyApp
$ cd MyApp
This will install both run-time project dependencies listed in package.json file.
This command will build the app from the source files (/src
) into the output
/dist
folder. As soon as the initial build completes, it will start the
Node.js server with HMR on top of it.
http://localhost:3000/ — Node.js server
http://localhost:3001/ — HMR
Now you can open your app in browser and start developing.
Special thanks to @kybarg and @protoEvangelion for helping to write this Wiki. Please, feel free to edit/create pages if you think it might be useful (also, see #33)