|
Firefly-rk3288上使用Node.js
发表于 2016-3-18 10:14:40
浏览:7555
|
回复:1
打印
只看该作者
[复制链接]
楼主
本帖最后由 madman 于 2016-3-18 10:21 编辑
Node.js是一个基于Chrome JavaScript运行时建立的平台, 用于方便地搭建响应速度快、易于扩展的网络应用。为Linux系统提供了丰富的各种模块的JavaScript库,很大的程度上方便web应用程序的研究与开发。
首先rk3288刷的ubuntu系统
先安装nodejs
root@firefly:~# curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
root@firefly:~# sudo apt-get install -y nodejs
root@firefly:~# nodejs -v
v0.10.25
然后我们就可以开始建立一个简单的服务器模块,
建立一个js文件:
vi hello.js
输入一下内容:
[mw_shl_code=applescript,false]var http = require("http");
http.createServer(function(request,response){
response.writeHead(200,{"Content-Type":"text/plan"});
response.write("hello firefly-rk3288");
response.end();
}).listen(8888);
[/mw_shl_code]
然后运行:
root@firefly:~# nodejs hello.js
接下来,打开浏览器访问http://localhost:8888/,你会看到一个写着“hello firefly-rk3288”的网页{:2_27:}。
|
|