| Route | HTTP | Description |
|---|---|---|
| /api/hello?name={name} | GET | Print hello, {name}! |
List of user routes:
| Routes | HTTP | Description |
|---|---|---|
| /api/users | GET | Get all the users |
| /api/users/:id | GET | Get a single users |
| /api/users | POST | Create a users |
| /api/users/:id | DELETE | Delete a users |
| /api/users/:id | PUT | Update a user with new info |
| /api/users/:id | PATCH | Update a user with specific new info |
List of filter routes:
| Routes | HTTP | Description |
|---|---|---|
| /api/user?name="{name}" | GET | get {name} match in users |
| /api/users?name="{na}" | GET | Get {na} like in users |
With only npm:
npm install > npm start > npm run dev
Access the website via http://localhost:3000 or API via http://localhost:3000/api