首页 > 网站 > WEB开发 > 正文

Node.js系列之ubuntu环境搭建

2024-04-27 14:19:29
字体:
来源:转载
供稿:网友
Node.js系列之Ubuntu环境搭建

ctrl+alt+t打开终端(命令行)

一、准备Node.js所依赖的包(g++,curl,python等)

sudo apt-get install g++ curl libssl-dev apache2-utils

二、下载源码

wgethttp://nodejs.org/dist/v0.10.31/node-v0.10.31.tar.gz

三、解压缩

gunzip node-v0.10.31.tar.gztar -xfnode-v0.10.31.tar

四、切换目录/编译源码

cdnode-v0.10.31

./configure

make

五、安装Node.js

sudo make install

六、验证安装是否成功

node -v

七、官网华丽的例子

var http = require('http');http.createServer(function (req, res) {  res.writeHead(200, {'Content-Type': 'text/plain'});  res.end('Hello World/n');}).listen(1337, '127.0.0.1');console.log('Server running at http://127.0.0.1:1337/');

八、运行

node 绝对路径.js

开始Node.js之旅吧。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表