Home Reference Source

A starter project for an isomorphic React app.

React Libraries

Utility Libraries

Servered with

Compiled with

Development Environment with

Document Generation with

Getting Started

Fist, install all the npm packages with

npm install

Start the dev server with

npm start

Do build without watching or starting server

npm run build

Clean up build dir with

npm run clean

If you want to use the gulp targets directly install gulp globally

sudo npm install -g gulp

Documentation

To build the documentation run

npm run doc

this will produce files ready for serving in the docs folder.

to server these files and read through the documentation

sudo npm i -g http-server # install the server
http-server docs # this will server the files in doc on localhost:8080

TODO