andrewjamesford / mongo-express-api

An example app of a express api that uses Mongo DB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An express API you can connect to MongoDB

Getting Started

  1. Clone the repo to your local machine
  2. Install the node modules for the server
  3. Run the Docker command below in the terminal to start the mongo container
  4. Run npm run start:dev in the terminal to start the server

Prerequisites

  • Docker
  • NodeJS

Docker

docker run --name mongo-express-api \
  -p 27017:27017 \
  -v mongo-express-api_data_container:/data/db \
  -d \
  mongo

About

An example app of a express api that uses Mongo DB

License:GNU General Public License v3.0


Languages

Language:JavaScript 95.6%Language:Dockerfile 4.4%