Node.js Quick Start
May 14, 2014
Technology
Installation
Via following command
$ yaourt -S nodejs
Quick Start
$ node
> console.log("Hello!")
Hello!
undefined
Hit twice “Ctrl+c” you will get out of the terminal.
A simple example is like:
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);
$ node server.js
$ curl http://localhost:8888
Hello World%