hrnkoji / rakuten-react-kit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rakuten React kit

Docs Gitter

Structure

/
├── build/
│   ├──   index.html
│   └──   bundle.js          : Application bundle
│
├── node_modules/            : Node dependencies
│
├── src/
│   ├── components/          : Application Components
│   ├── domain/              : Business Logic
│   │    ├── Middleware/     : Actors who dispatch the actions
│   │    └── Store/
│   │         ├── actions/
│   │         ├── reducers/
│   │         └── state/
│   │
│   ├── style/               : Global Styles
│   └── main.jsx             : Application Entry Point
│
│
├── .gitignore
├── .flowconfig
├── .css.js.flow
├── package.json
├── readme.md
└── webpack.config.js        : Webpack config file

Install Dependencies

npm install

Development

Run server with HMR (Hot Module Replacement) at localhost:9090

npm start

See more about Hot Module Replacement here

Production

Create minified bundle for deployment in the build directory

npm run build

Disclaimer

This is an experimental project. Use it in production with caution.

License

Copyright (c) 2016 Rakuten, Inc. Licensed under the MIT License.

About

License:MIT License


Languages

Language:JavaScript 90.9%Language:CSS 6.8%Language:HTML 2.3%