NodeServer icon indicating copy to clipboard operation
NodeServer copied to clipboard

Compare node.js servers

Node HTTP Server Examples

HTTP сервер на Node.js (routing, cluster, IP sticky)

Basic http server

  • Example from documentations: basic-classic
  • HTTP without routing: basic-http

Examples with flexible routing

  • Simple routing: native-simple
  • Wildcard and parameters: native-advanced
  • Asynchronous handlers support: native-async

Examples with clustering

  • Running in cluster mode: native-cluster
  • Use process-per-port mode: native-cp
  • Sticky IP to process: ip-sticky

Examples with express framework

  • Simple routing: express-simple
  • Running in cluster: express-cluster

Examples with Impress Application Server

  • Simple application: impress-simple