It's a simple project that simulate CRUD process.
- Create a new book: POST: /books
- Get a book by id: GET: /books/:id
- Get all books: GET: /books
- Update book: PUT: /books/:id
- Delete book: DELETE: /books/:id
- Node.js
- Express.js
- TypeScript
- MySQl
- Sequelize
- Joi for request body validation
- Dotenv
Check it here My Schema
PORT="" DATABASE_URI=""