Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 498 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 498 Bytes

Basic CRUD Application

This is a basic CRUD application that allows you to create, read, update, and delete users. The overall flow will be based on a simple Library Management System.

Structure of the Project

project/
│
├── controllers/
│   └── bookController.js
│
├── models/
│   └── bookModel.js
│
├── routes/
│   └── bookRoutes.js
│
├── views/
│   └── index.ejs
│
├── app.js
└── package.json