Coursera course final result. This single-page application use JavaScript ES6, Reactstrap for Bootstrap 4-based responsive UI design, React router, Flux architecture and Redux. Read more about this course..
I learned in this course:
- Client-side Javascript application development and the React library
- Various React features including components and forms
- Reactstrap for designing responsive React applications
- Redux to design the architecture for a React-Redux application.
npm install
npm install json-server -g
Go to the json-server folder and type the following at the command prompt to start the server:
json-server --watch db.json -p 3001 -d 2000
This should start up a server at port number 3001 on your machine. The data from this server can be accessed by typing the following addresses into your browser address bar:
- http://localhost:3001/dishes
- http://localhost:3001/promotions
- http://localhost:3001/leaders
- http://localhost:3001/feedback
npm start
npm run build
This application does not include any test.