It's
Back-End JSON API
Front-End
SINGLE PAGE APPS
jQuery
Vanilla JS
React
Angular
Express
Rails
Django
Flask
You might not need this section!
| Field | Type |
|---|---|
| name | String |
| completed | Boolean |
| createdDate | Date |
| Verb | Route | Description |
|---|---|---|
| GET | /api/todos | List all todos |
| POST | /api/todos | Create new todo |
| GET | /api/todo/:todoId | Retrieve a todo |
| PUT | /api/todo/:todoId | Update a todo |
| DELETE | /api/todo/:todoId | Delete a todo |
Installing Express
+
The Most Basic App
(ugh)
users.push(
{
persona: pickPersona(),
data: [
username,
joinDate
]
}
)