Node.js: simple web server: Revision history

From OnnoCenterWiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons 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.

28 November 2014

  • curprev 02:4002:40, 28 November 2014 Onnowpurbo 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...