Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.57 KB

File metadata and controls

48 lines (39 loc) · 1.57 KB

React.js Boilerplate

Build Status dependencies Status devDependencies Status Language grade: JavaScript

Boilerplate for React.js projects.

Prerequisites

  • yarn
  • node js

Folder Structure

├── 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

Install

  1. Clone the repository git clone https://github.com/rozig/reactjs-boilerplate.git

  2. Install dependencies yarn install

Scripts

  1. Run tests yarn test

  2. Start Development Server yarn start

  3. Build Running yarn build script will create dist folder inside root folder which contains bundled javascript file, index.html and public files.

License

This project is licensed under the MIT License.