Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 324 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 324 Bytes

Node Babel Template

A node.js and babel template repo.

MongoDB

Get a MongoDB instance running in a container with dummy data.

docker run -d -p 27017:27017 --name node-babel-mongo \
  -v "$(pwd)/data:/docker-entrypoint-initdb.d" \
  mongo

Getting Started

# start nodemon server
npm run dev