https://github.com/iansinnott/react-snake
https://github.com/iansinnott/react-snake
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iansinnott/react-snake
- Owner: iansinnott
- Created: 2015-02-23T19:43:19.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-23T19:43:32.000Z (over 11 years ago)
- Last Synced: 2025-03-20T03:39:46.815Z (over 1 year ago)
- Language: JavaScript
- Size: 230 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Base Project
This is intended to be a good starting point for building simple react apps. There is no server included other than the development connect server, so if you want to deploy to production that's up to you.
For that same reason there is no server rendering. The browser will get `client/index.html` as is on every request.
## Project Structure
* `client/`: This is the meat of the app.
* `utils/`: Contains utilities, helpers and common code for the client app.
* `index.jsx`: This renders the app
* `App.jsx`: The top level of the app. No other component should require App.
* Components should each live in their own appropriately named sub folder
* `public/`: The web root
* `Gulpfile.js`: All build processes are defined here.
**Note:** Aside from images, all files under `public/` are compiled so they should not be edited directly.