Skip to content

292-group/web-pz-app-accounts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Practical lesson app-accounts

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

Acceptance criteria

  • 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

Getting started

Install JSON Server

npm install -g json-server

Start JSON Server

json-server --watch ./db/db.accounts.json

Routes

Based on the previous ./db/db.accounts.json file, here are all the default routes. You can also add other routes using --routes.

Plural routes

GET    /accounts
GET    /accounts/1
POST   /accounts
PUT    /accounts/1
PATCH  /accounts/1
DELETE /accounts/1

Singular routes

GET    /accounts
POST   /accounts
PUT    /accounts
PATCH  /accounts

Useful links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published