Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tidbitsjs/hyf-homework-nodejs-3
https://github.com/tidbitsjs/hyf-homework-nodejs-3
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tidbitsjs/hyf-homework-nodejs-3
- Owner: TidbitsJS
- Created: 2021-04-08T05:51:17.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-08T07:48:05.000Z (over 3 years ago)
- Last Synced: 2024-10-11T10:49:44.673Z (26 days ago)
- Language: JavaScript
- Homepage: https://lab.github.com/M3kH/create-rest-server-with-nodejs-and-express
- Size: 234 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## REST Express Homework
With this homework we would learn how to create a REST server.We would create a simple counter to understand the details of persistent data.
## Steps
- Create a Server that would answer to "/" with "Hello World"
- Create an endpoint that would answer to `GET` to `/users` with the list of users
- Create an endpoint to `GET` to `/user/:id`
- Create an endpoint to `POST` to `/user/:id`
- Create an endpoint to `DELETE` to `/user/:id`