- NOT DATABASE HERE
- Using Array to save some DATA.
- Http Verbs.
- Middleware Global.
- Middleware Local.
- ExpressJS configuration.
- Express Modules.
- ExpressJS serving JSON.
Entities used here :
Project CRUD Each project have a Id(string) , Title (string) and array of Tasks (string)
Each Task is a string (flat array)
{
"id":"1",
"title":"Project Loop"
"tasks":[
"Create Docs",
"Assemble a Team",
"Start Sprint",
"Generate Artifacts"
]
}
To run this project :
Install dependencies
yarn
Run project (on DEV)
yarn dev