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

https://github.com/luciopaiva/node-examples


https://github.com/luciopaiva/node-examples

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

README

          

# node-examples

Series of simple examples to show some Node.js features.

In ascending order of complexity:

* http-server: shows how to make a minimum functional HTTP server;
* simple-express-server: same as the *http-server*, but made with Express;
* motd-server: a simple Message-of-the-day server;
* static-express-server: shows how to use Express to serve static files;
* logging-express-server: shows how to create custom middleware. Besides Express, also uses Chalk to color output;
* json-express-server: a table tennis simulator to show the use of JSON in responses;
* websocket: an example of a full-powered websocket application using Express;