Sign inSign up

moritzspiegel/nodejs-typescript

By moritzspiegel

Updated over 7 years ago

Image
0

298

moritzspiegel/nodejs-typescript repository overview

Nodejs TypeScript Starter

Getting started

  • Clone the repository
git clone https://github.com/moritz-spiegel/nodejs-typescript.git
  • Install dependencies
cd nodejs-typescript
npm install
  • Build and run the project
npm run build
npm start

Running in Docker for Development

docker build -f Dockerfile.dev -t nodejs-typescript:dev .
docker run -p 3000:3000 nodejs-typescript:dev
With Compose
docker-compose up

Running in Docker for production

docker build -t nodejs-typescript:prod .
docker run -p 3000:3000 nodejs-typescript:prod
With Compose
docker-compose up

Tag summary

Content type

Image

Digest

Size

64.7 MB

Last updated

over 7 years ago

docker pull moritzspiegel/nodejs-typescript