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

https://github.com/rodrigogs/node-scalable-example

Node.js Scalable Example
https://github.com/rodrigogs/node-scalable-example

Last synced: about 1 month ago
JSON representation

Node.js Scalable Example

Awesome Lists containing this project

README

          

# node-scalable-example

Setup
-----
```bash
$ git clone git@github.com:rodrigogs/node-scalable-example.git
$ cd node-scalable-example
$ yarn install
```

Development
-----------
* nodemon
```bash
$ yarn start
```
* debug
```bash
$ node --inspect=${DEBUG_PORT} ./bin/www
```

Production
----------
* docker
```bash
$ docker-compose up .
```
* pm2
```bash
$ npm install pm2 -g
$ pm2 start ./bin/www
```