Revision history of "Node.js: simple web server"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 09:40, 28 November 2014Onnowpurbo talk contribs 816 bytes +816 New page: An example: Webserver This simple web server written in Node responds with "Hello World" for every request. var http = require('http'); http.createServer(function (req, res) { res.w...