Super lightweight React starter kit
- ES6
- webpack + webpack Dev Server
- React
- Redux
- react-router-dom
- react-router-redux
- redux-saga
- immutable
Plus:
- Eslint (Airbnb JavaScript Style Guide)
- pre-commit syntax checker
1. Clone project
# with SSH
git clone [email protected]:YUzhva/react-ethereal-boilerplate.git NEW_PROJECT_NAME
# with HTTPS
git clone https://github.com/YUzhva/react-ethereal-boilerplate.git NEW_PROJECT_NAME
2. Go inside project folder cd NEW_PROJECT_NAME
and edit project name inside package.json
// change
{
"name": "react-ethereal-boilerplate",
}
// to the
{
"name": "NEW_PROJECT_NAME",
}
Also update SPA DOM id at /src/index.template.html
and /src/main.js
to your own.
3. Delete .git folder
# command for Mac/Linux
rm -rf .git
# command for Windows
rmdir .git
4. Initialize new git
git init
git add .
git commit -m "[initial commit] NEW_PROJECT_NAME"
🍺 Have fun 🍺 (=
- src
- components // reusable react components without redux
* ComponentName
tests
index.js // entry point for component
- containers // react components with redux and redux-saga data fetching
* ContainerName
tests
index.js // entry point for container
constants/actions/reducer/sagas/selectors.js // place container required files in root
- global-reducer.js // connect other containers reducers here
- global-sagas.js // connect other containers sagas here
In the project directory, you can run:
After starting the server webpack should automatically open next address:
http://localhost:8080/
Webpack will build all scripts into ./public
folder.
You will see all lint errors in the console.