首页 > Web开发 > 详细

安装nodejs最新版到debian,ubuntu,mint系统

时间:2016-07-19 23:25:15      阅读:200      评论:0      收藏:0      [点我收藏+]
从官网得到,测试可以使用,本机为linux mint18
官网原文链接在此
//     直接使用sudo apt install nodejs安装的版本较老,而且命令必须使用nodejs
//     使用下面的方法,终端输入node即可使用,而且是最新版本
//     安装4.x版本稳定版,现在为v4.4.7LTS
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
//     安装6.x开发版,现在为v6.0.3current
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
//     Optional: install build tools
 
//     To compile and install native addons from npm you may also need to install build tools:
sudo apt-get install -y build-essential
//     测试是否安装成功:
//     新建文件server.js
var http = require(http);
 
http.createServer(function (request, response) {
 
// 发送 HTTP 头部 
// HTTP 状态值: 200 : OK
// 内容类型: text/plain
response.writeHead(200, {Content-Type: text/plain});
 
// 发送响应数据 "Hello World"
response.end(Hello World\n);
}).listen(8888);
 
// 终端打印如下信息
console.log(Server running at http://127.0.0.1:8888/);
使用node --version,查看版本号
v4.4.7
在server.js文件目录下输入node server.js 开启服务
输入node server.js 
显示Server running at http://127.0.0.1:8888/
保持终端不关闭
 
在浏览器端 访问http://127.0.0.1:8888/ 或 localhost:8888 即可
显示hello world
 
 

安装nodejs最新版到debian,ubuntu,mint系统

原文:http://www.cnblogs.com/iamhenanese/p/5686608.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!