.
βββ /build/ # The folder for compiled output
βββ /node_modules/ # 3rd-party libraries and utilities
βββ /components/ # React components
βββ /core/ # Core framework
βββ /pages/ # React.js-based web pages
β βββ /404.js # Not Found page
β βββ /500.js # Error page
β βββ /index.js # Home / Submit page
βββ /static/ # Static files such as favicon.ico etc.
βββ /test/ # Unit and integration tests
βββ /tools/ # Build automation scripts and utilities
βββ app.js # The main JavaScript file (entry point)
βββ config.js # Website configuration / settings
βββ LICENSE.txt # License file
βββ package.json # Dev dependencies and NPM scripts
βββ README.md # Project overview
Just clone the repo, install Node.js modules and run npm start:
$ git clone -o cfa-dance -b master --single-branch \
https://github.com/keithk/cfa-dance.git DanceParty
$ cd DanceParty
$ npm install
$ npm start
Then open http://localhost:3000/ in your browser.
The unit tests are powered by chai and mocha.
$ npm test
I currently have a github pages set up here, so PR your changes and they'll be pushed automagically.
$ npm run deploy # Deploys the project to GitHub Pages- Getting Started with React.js
- Getting Started with GraphQL and Relay
- React.js Questions on StackOverflow
- React.js Discussion Board
- Learn ES6, ES6 Features
Used boilerplate from react-static-boilerplate with π