Technology stack is as follows:
- Express Js
- Node Js
The project is developed as starter project with basic layouts.
Codebase is designed in layered structures with flow described below: Controller -> Validator (optional) -> Service -> Dao Each layer have defined tasks.
- Controller:- Interface the client request and send data to core of system.
- Validator:- This layer is optional mainly concentrated around data validation before passing data for further process.
- Service:- This layer is heart and sole of application. All the business logics reside here. We can use services in service.
- Dao:- This layer is responsible to store data in database.
This is not a mandatory flow but it is advisable to follow the designed path.