Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 861 Bytes

README.md

File metadata and controls

36 lines (21 loc) · 861 Bytes

Create Simple Backend CRUD Application (ReSTAPI) With NodeJS, ExpressJS, And MongoDB

This project I used swagger for documentation and testing ReSTAPI. You don't need post for test your ReSTAPI, I have created example value (include on swagger_api.json).

📦️ Prequisite:

  • NodeJS 12.18.4 LTS (Recomended)
  • MongoDB

📢️ List Package Node Modules For Production:

  • ExpressJS
  • Swagger UI Express
  • Mongoose
  • Morgan

⚗️ List Package Node Modules For Development

  • Dotenv
  • Nodemon

📝️ Getting Started Development

Let's fork and clone this project to your local machine!

$ cd expressjs-mongodb

$ npm install

$ touch .env

Configure .env file to your liking. Example:

DATABASE_URL="mongodb://localhost:27017"

$ npm run dev