API created to be used for the flutter workshop built in Express Js.
Check it on this link: https://flutterworkshop-api-cse.herokuapp.com/
Different routes you can use in this API
Get all products in database
Create a new product in database with this model :
productschema = {
name : String,
description : String,
image: String,
price: Number,
}
Edit an existing product identified in database with its id according to this model :
productschema = {
name : String,
description : String,
image: String,
price: Number,
}
Delete an existing product identified in database with its id