Coder Social home page Coder Social logo

multi-process-nodejs-example's Introduction

Multi-process Node.js application example

The application consists of 3 processes:

Processes

Use the PROCESS_TYPE environment variable to select the process to be run.

$ PROCESS_TYPE=web NODE_ENV=production npm start

Twitter stream worker

The process is listening on twitter for keywords and sends the tweets to a RabbitMQ queue.

Environment variables

  • NODE_ENV ('development' | 'production'): when development, it uses dotenv, to read the local .env file, that's the only difference
  • LOGGER_LEVEL ('error' | 'warn' | 'info' | 'verbose' | 'debug' | 'silly'), default: info
  • LOGGER_ENABLED ('true' | 'false'), default: true
  • TWITTER_CONSUMER_KEY
  • TWITTER_CONSUMER_SECRET
  • TWITTER_ACCESS_TOKEN_KEY
  • TWITTER_ACCESS_TOKEN_SECRET
  • TWITTER_TRACK: comma separated keywords to track, eg. nodejs,node.js,risingstack,microservice,micro-service
  • RABBITMQ_URI

Social preprocessor worker

The process is listening on the RabbitMQ queue and saves the tweets to Redis and removes old ones.

Environment variables

  • NODE_ENV ('development' | 'production'): when development, it uses dotenv, to read the local .env file, that's the only difference
  • LOGGER_LEVEL ('error' | 'warn' | 'info' | 'verbose' | 'debug' | 'silly'), default: info
  • LOGGER_ENABLED ('true' | 'false'), default: true
  • RABBITMQ_URI
  • REDIS_URI
  • REDIS_DATA_RETENTION_IN_MS, default: 86400000 (1 day)

Web

The process is serving an HTTP API to return the tweets.

  • GET /api/v1/tweets?limit&offset

Environment variables

  • NODE_ENV ('development' | 'production'): when development, it uses dotenv, to read the local .env file, that's the only difference
  • LOGGER_LEVEL ('error' | 'warn' | 'info' | 'verbose' | 'debug' | 'silly'), default: info
  • LOGGER_ENABLED ('true' | 'false'), default: true
  • REDIS_URI
  • PORT

multi-process-nodejs-example's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.