uuntu nodejsインストール

995 ワード




sudo apt-get update
sudo apt-get install -y python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs

: Node.js v0.10.0 ,Chris Lea Node.js npm nodejs-dev

sudo add-apt-repository ppa:chris-lea/node.js , , PPA:
, OK!




node -v

v0.10.37


npm -v

1.4.28


ok goodluck



hello.js

var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});

res.end('Hello DemonZhang');
}).listen(8716, "127.0.0.1"); // IP


node hello.js

http://127.0.0.1:8716/

ok