Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexander1n/hyf-homework-nodejs-3
https://github.com/alexander1n/hyf-homework-nodejs-3
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexander1n/hyf-homework-nodejs-3
- Owner: Alexander1N
- Created: 2022-07-21T11:33:40.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-21T11:46:25.000Z (over 2 years ago)
- Last Synced: 2024-11-08T11:47:15.589Z (2 months ago)
- Language: JavaScript
- Homepage: https://lab.github.com/M3kH/create-rest-server-with-nodejs-and-express
- Size: 234 KB
- Stars: 0
- 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`