An open API service indexing awesome lists of open source software.

https://github.com/bartolomej/node-starter

Plain Node.js starter template with TypeScript, eslint, Docker & Jest configuration.
https://github.com/bartolomej/node-starter

nodejs nodejs-starterpack starter-template

Last synced: 9 months ago
JSON representation

Plain Node.js starter template with TypeScript, eslint, Docker & Jest configuration.

Awesome Lists containing this project

README

          

# Node starter

## 👋 Getting started

You can run this app with or without docker. When running with docker, you need to make sure you indeed have docker and docker-compose installed on your system.

### Development

Start with docker:
```shell
npm run docker:dev
```
Start on your os:
```shell
npm run start:dev
```

### Production

Start with docker:
```shell
npm run docker:prod
```

Start on your os:
```shell
npm run start:prod
```