This is an order board built by react with Redux and redux-saga.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Check you got proper version Node.js and npm already.
node --version
npm --version
Install node_modules all the project needs.
npm install
Wait a little time for installing and finally project is done.
Here are some npm scripts about webpack that I had set for project.
"watch" all files. If one of these files is updated, the code will be recompiled so you don't have to run the full build manually.
npm run watch
The webpack-dev-server module provides you with a simple web server and the ability to use live reloading.
npm run dev
This will clean and then create directory /dist and compiled modules according to settings of webpack.config.js.
npm run build
http-server
module is a simple http server and it is easy to start up.
npm start
- Webpack - JavaScript module bundler used
- React - Used to build component-based user interface
- Redux - A predictable state container for JavaScript apps
- redux-saga - A library that aims to make application side effects
- 游富荃(FuChuan Yu) - Portfolio
This project is licensed under the MIT License - see the LICENSE file for details