node-mongo-blog

Installing

Clone this repo and run following commands in cmd/terminal

npm install

npm start

with this commands server will start running at localhost

Folder structure

.
├── server                  # Source files 
│   ├── controllers         # All controllers files 
│   ├── models              # All DB model
│   ├── routes              # Route files
|   ├── utils               # All shared files
|   └── validator           # All routes validation
├── test                    # Automated tests 
└── README.md