npm install
npm start
This is a simple JSON database, stored in db.json
and hosted on localhost:3000
{
"id": string,
"isActive": boolean,
"name": {
"first": string,
"last": string
},
"company": string
}
GET /people
GET /people/{id}
POST /people
PUT /people/{id}
PATCH /people/{id}
DELETE /people/{id}
This is a simple React app created using Create React App