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.
- Host: GitHub
- URL: https://github.com/bartolomej/node-starter
- Owner: bartolomej
- Created: 2022-03-17T09:29:03.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-17T09:37:03.000Z (almost 4 years ago)
- Last Synced: 2025-02-14T18:18:27.708Z (11 months ago)
- Topics: nodejs, nodejs-starterpack, starter-template
- Language: JavaScript
- Homepage:
- Size: 169 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```