ES Microservice Template

Quick Start

    npm install
    npm run dev

Scripts

    "build": "npx tsc",
    "start": "node dist/index.js",
    "dev": "nodemon src/index.ts",
    "prod": "npm run build; npm run start"

Docker Commands

Docker

    // build images and run containers
    docker-compose up -d
    //remove all containers and images
    docker-compose down --rmi all