Basically a starter express app now.
npm install
npm start
# Run with watch
npm run dev
# Run e2e tests
npm run test
# Build Docker Image
docker build --tag playing-with-node:latest .
# Run Docker image (add -d after port for detached mode 😉)
docker run -p 8888:80 playing-with-node:latest