Nodejs + Koa.js + koa-router + sequelize
npm i
npm run serve
# Production build
npm run build
# Start in production mode
npm run start
npm run test
GET /bookings - to get all the bookings.
POST /place-booking - to place a booking. Takes an object that has "time" key to process.
{
"time": "2020-06-22T02:00:00.000Z"
}