npm install
npm start
GET /api/products
: Retrieve all products stored in the databaseGET /api/products/<productId>
: Retrieve a specific product with productId.POST /api/products
: Add a new product to the database.PUT /api/products/<productId>
: Update a specific product partialy or completely with productId.DELETE /api/products/<productId>
: Delete a specific product with productId.