A Redux Boot example to demonstrate how to create a web application.
Module using Express.
Module using static Express middleware to put your files in /public
directory.
Using json-server.
Available End points:
- Posts
GET /posts
GET /posts/1
POST /posts
PUT /posts/1
PATCH /posts/1
DELETE /posts/1
- Comments
GET /comments
GET /comments/1
POST /comments
PUT /comments/1
PATCH /comments/1
DELETE /comments/1
- Profile
GET /profile
POST /profile
PUT /profile
PATCH /profile
DELETE /profile
npm install
npm start
then access http://localhost:3000.