- Clonen Sie das Repository mithilfe von
git clone
. - Navigieren Sie in das Root-Verzeichnis.
- Laden Sie alle dependencies mithilfe von
npm i
herunter. - Starten Sie den Server mithilfe von
npm run server
- Der Server ist nun auf Port 3000 verfügbar
GET
http://localhost:3000/car
http://localhost:3000/driver
http://localhost:3000/sight
GET - Bestimmtes Objekt erhalten
http://localhost:3000/car/{id}
http://localhost:3000/driver{id}
POST-Beispiel für einen Fahrer
http://localhost:3000/driver
{
"driverId": 1,
"name": "Fabian",
"age": 24,
"carId": 3,
"budget": 20,
"currentPos": {
"lat": 51.02289632984686,
"lng": 7.562342790969774
}
}
POST-Beispiel für ein Auto
http://localhost:3000/car
{
"carId": 1,
"name": "BMW",
"fuelType": "Diesel",
"minConsumPer100Kilometers": 8,
"maxConsumPer100Kilometers": 24
}
DELETE
http://localhost:3000/car
http://localhost:3000/driver