Boilerplate for React.js projects.
- yarn
- node js
├── public
│ ├── index.html
├── src
│ ├── assets
│ ├── components
│ │ ├── test
│ │ │ ├── Test.jsx
│ │ │ ├── Test.scss
│ │ │ ├── Test.test.jsx
│ ├── pages
│ ├── App.jsx
│ ├── App.scss
├── package.json
├── README.md
├── webpack.config.js
└── yarn.lock
-
Clone the repository
git clone https://github.com/rozig/reactjs-boilerplate.git -
Install dependencies
yarn install
-
Run tests
yarn test -
Start Development Server
yarn start -
Build Running
yarn buildscript will createdistfolder inside root folder which contains bundled javascript file, index.html and public files.
This project is licensed under the MIT License.