ypankaj007 / node-ts-express-mongo

Typescript nodejs mongo starter project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Node-TS-express-mongodb-API

Running the API

Development

To start the application in development mode, run:

npm install -g nodemon
npm install -g ts-node
npm install -g typescript
npm install

Start the application in dev env:

nodemon

Start the application in production env:

Install ts pm2 and typescript compiler:

npm install -g pm2
pm2 install typescript

example start with scale on 2 core:

pm2 start ./src/index.ts -i 1 \
    && sleep 1 \
    && pm2 scale index 2 --no-daemon

Express server listening on http://localhost:3000/, in development mode

About

Typescript nodejs mongo starter project

License:MIT License


Languages

Language:TypeScript 99.0%Language:JavaScript 1.0%