A small node framework that comes with MVC pattern.
Author: Basanta Tajpuriya
Installation is very simple. Follow the instruction below.
npm install
npm run tscw
npm run start
npm run startn //if you have nodemon installed previously
Update the database configuration on path database/mongoose.js
mongoose.connect('mongodb://localhost:27017/{your_database_name}', {
useUnifiedTopology : true,
useNewUrlParser : true,
useCreateIndex : true
}).then(conn => {
console.log('mongo db connection started');
})