Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HowProgrammingWorks/NodeServer
Compare node.js servers
https://github.com/HowProgrammingWorks/NodeServer
child-process cluster http nodejs project routing server
Last synced: 3 months ago
JSON representation
Compare node.js servers
- Host: GitHub
- URL: https://github.com/HowProgrammingWorks/NodeServer
- Owner: HowProgrammingWorks
- License: mit
- Created: 2015-09-12T21:44:26.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-13T17:26:09.000Z (6 months ago)
- Last Synced: 2024-06-16T14:33:54.073Z (5 months ago)
- Topics: child-process, cluster, http, nodejs, project, routing, server
- Language: JavaScript
- Homepage: https://www.youtube.com/TimurShemsedinov
- Size: 419 KB
- Stars: 85
- Watchers: 23
- Forks: 43
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- backend-cheats - **Node.js HTTP Server Examples – GitHub**
README
# Node HTTP Server Examples
[![HTTP сервер на Node.js (routing, cluster, IP sticky)](https://img.youtube.com/vi/7Ufxj0oTaUo/0.jpg)](https://www.youtube.com/watch?v=7Ufxj0oTaUo)Basic http server
- Example from documentations: [basic-classic](basic-classic)
- HTTP without routing: [basic-http](basic-http)Examples with flexible routing
- Simple routing: [native-simple](native-simple)
- Wildcard and parameters: [native-advanced](native-advanced)
- Asynchronous handlers support: [native-async](native-async)Examples with clustering
- Running in cluster mode: [native-cluster](native-cluster)
- Use process-per-port mode: [native-cp](native-cp)
- Sticky IP to process: [ip-sticky](ip-sticky)Examples with `express` framework
- Simple routing: [express-simple](express-simple)
- Running in cluster: [express-cluster](express-cluster)Examples with Impress Application Server
- Simple application: [impress-simple](impress-simple)