In this lesson students should create SPA application using one of the framework from the list: ReactJs, Angular, VueJs
Screen.Recording.2021-11-05.at.20.19.34.1.mov
- Create the list of account app according to video above
- Adaptive responsive layout for different devices
- Project should have production and development build
- Use TypeScript
Install JSON Server
npm install -g json-server
Start JSON Server
json-server --watch ./db/db.accounts.json
Based on the previous ./db/db.accounts.json
file, here are all the default routes. You can also add other routes using --routes
.
GET /accounts
GET /accounts/1
POST /accounts
PUT /accounts/1
PATCH /accounts/1
DELETE /accounts/1
GET /accounts
POST /accounts
PUT /accounts
PATCH /accounts