2013年3月18日 星期一

Install & start up nodejs on ubuntu


Download nodejs tar.gz from nodejs

$ unzip nodejs tar.gz
$ ./configure
$ sudo make install


That's it! You can do a little test to make sure that nodejs has been installed correctly

$ node -v


Now, we can add a simple server side source code named server.js like this

var http = require('http');

var server = http.createServer(function(req, res) {
  res.writeHead(200);
  res.end('Hello Http');
});
server.listen(8080); 
and start up this simple server by

node server.js

opening a browser and navigating to http://localhost:8080

Here is a good beginners guide

沒有留言:

張貼留言

BlueTea螢幕錄影程式

  螢幕錄影新選擇:簡單、方便、免費 現在的螢幕錄影工具多樣,但安裝麻煩、操作複雜讓人卻步。我們推出了一款全新的螢幕錄影程式,專為追求簡單和效率的你設計。 1. 免安裝 無需安裝程式。解壓縮後點兩下就可以開始使用 2. 可選取錄影範圍 自由選擇全螢幕、特定視窗或自定義區域,靈活應...