https://github.com/howprogrammingworks/nodeserver
Compare node.js servers
https://github.com/howprogrammingworks/nodeserver
child-process cluster http nodejs project routing server
Last synced: 16 days 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-12-10T23:58:13.000Z (4 months ago)
- Last Synced: 2025-03-29T20:08:52.764Z (23 days ago)
- Topics: child-process, cluster, http, nodejs, project, routing, server
- Language: JavaScript
- Homepage: https://www.youtube.com/TimurShemsedinov
- Size: 469 KB
- Stars: 93
- Watchers: 22
- Forks: 45
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node HTTP Server Examples
[](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)