node server to get data from getir local database hosted MongoDb cloud. Handles card processes like add, update delete and get App url : https://getir-local-api.herokuapp.com/
cors, express, mongodb
inserts new item to card. Model:
interface CardType {
name: string;
slug: string;
quantity: number;
price: number;
}
updates the item quantity in the card . Model:
interface CardType {
name: string;
slug: string;
quantity: number;
price: number;
}
finds the item in card by slug and deletes item Model:
slug:string