Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hassanjadi/car-management-dashboard

"This is a RESTful API that can be used for carry out car data management"
https://github.com/hassanjadi/car-management-dashboard

express postgres typescript

Last synced: about 1 month ago
JSON representation

"This is a RESTful API that can be used for carry out car data management"

Awesome Lists containing this project

README

        

# Car Management Dashboard

## Membuat HTTP Server yang dapat digunakan untuk melakukan manajemen data mobil dengan kriteria sebagai berikut:
1. Membuat sebuah HTTP Server dengan menggunakan Express JS
2. Menerapkan kaidah RESTful API dalam membuat sebuah HTTP Server
3. Dapat membuat sebuah HTTP Server yang dapat digunakan untuk melakukan operasi CRUD ke dalam Database melalui HTTP Request
4. Menggunakan TypeScript sebagai bahasa pemrograman

## Done
- [X] Membuat sebuah HTTP Server dengan menggunakan Express JS
- [X] Menerapkan kaidah RESTful API dalam membuat sebuah HTTP Server
- [X] Dapat membuat sebuah HTTP Server yang dapat digunakan untuk melakukan operasi CRUD ke dalam Database melalui HTTP Request
- [X] Menggunakan TypeScript sebagai bahasa pemrograman

## Entity Relationship Diagram
![ERD](https://i.ibb.co/2ygvZYw/car-management-dashboard.png)

## Endpoint
### Backend REST API
| No | URI | Method | Description |
| -- | ----------------------------------- | --------- | ---------------------------------------- |
| 1 | /api/v1/cars | POST | Adding Cars |
| 2 | /api/v1/cars | GET | Getting Cars |
| 3 | /api/v1/cars/:id | GET | Getting Specified Cars |
| 4 | /api/v1/cars/:id | PATCH | Update Cars |
| 5 | /api/v1/cars/:id | DELETE | Delete car |

## Postman Test
[Run In Postman](https://god.gw.postman.com/run-collection/30664113-1cfa44be-eb6e-43ce-8ee5-8a5e53acec9d?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D30664113-1cfa44be-eb6e-43ce-8ee5-8a5e53acec9d%26entityType%3Dcollection%26workspaceId%3D4263bd11-041f-40d1-819e-c671549b1ca7)