React Base for kenote
- node ^6.0.0
- npm ^3.0.0
$ git clone https://github.com/thondery/kenode-react-base.git <my-project-name>
$ cd <my-project-name>
$ yarn # Install project dependencies (or `npm install`)
$ yarn start # Start the development server (or `npm start`)
yarn <script> | Description |
---|---|
start | Serves your app at localhost:3000 |
build | Builds the application to ./dist |
test | Runs unit tests with Jest. |
codecov | Runs unit tests & codecov with Jest. |
├── dist
├── dll
│ └── manifest.json
├── src # Application source code
│ ├── containers
│ │ └── root.js
│ ├── index.js # Application bootstrap and rendering
│ └── index.html # Main HTML page container for app
├── .babelrc
├── project.config.js
├── webpack.config.js
├── webpack.dev.config.js
├── webpack.dll.config.js
└── webpack.prod.config.js
this repo is released under the MIT License.