node.js入门

node.js入门

由于跑到另一个城市,手头没电脑,dom framework不能如期发布,趁此学习一些新东西。这时期最迫切的需要是寻求一个超轻量的后端来架起我的框架,于是触爪伸向传说中的Server- Side Javascrpt。后端JS最出名无疑是Ryan Dahl的node.js,另一个是aptana IDE提供商搞出的jaxer。

http://github.com/tlrobinson/narwhal

首先下载node.js,然后解压到E盘,改名为node,然后开始菜单输入cmd,用cd命令切换到nodejs的解压目录:

第一个例子:hello world。

在node目录下建立hello.js文件,然后在里面输入:

var sys = require("sys");
sys.puts("Hello world");

然后我们在命名台中输入命令node hello.js,就能看到命名台输出结果Hello world。

第二个例子:hello world2。

好了,这次我们试从游览器中输出hello world。在node目录下建立http.js,然后输入:

var sys = require("sys"),
    http = require("http");
http.createServer(function(request, response) {
    response.sendHeader(200, {"Content-Type": "text/html"});
    response.write("Hello World!");
    response.close();
}).listen(8080);
sys.puts("Server running at http://localhost:8080/");

然后我们在命名台中输入命令node http.js,在浏览器输入http://localhost:8080/

第三个例子:hello world2。

node.js提供一个Buffer类用于转换不同编码的字符串。目前支持三种类型:'ascii','utf8'与'binary'。详见这里

var Buffer = require('buffer').Buffer,
buf = new Buffer(256),
len = buf.write('\u00bd + \u00bc = \u00be', 0);
console.log(len + " bytes: " + buf.toString('utf8', 0, len));

第四个例子:hello world3。

//synopsis.js
//synopsis 摘要, 梗概,大纲
var http = require('http');
 
http.createServer(function (request, response) {
  response.writeHead(200, {'Content-Type': 'text/plain'});
  response.end('Hello World\n');
}).listen(8124);
 
console.log('Server running at http://127.0.0.1:8124/');

前台地址栏:http://localhost:8124/

第五个例子:编译C文件

#include #include int main(){ printf("Hello World!!!"); exit(0); }
7
0
(请您对文章做出评价)
« 博主前一篇:地址栏上的跑马灯
» 博主后一篇:生成一个session id

posted on 2010-07-15 22:04 司徒正美 阅读(16187) 评论(19) 编辑 收藏

评论

#1楼 2010-07-15 22:56 Unmi      

应该无法跨平台的,用的windows 下的 CScript 脚本吧。 回复 引用 查看   

#2楼 2010-07-15 22:58 Jeffrey Zhao      

@Unmi
我怎么觉得现在没什么东西是不能跨平台的,呵呵,当然我也只是推测。
回复 引用 查看   

#3楼 2010-07-15 23:54 Dreampuf      

我更觉得JS就是一个很好的跨平台语言.
他的子集JSON各大平台都争相实现.
回复 引用 查看   

#4楼[楼主] 2010-07-16 06:24 司徒正美      

怎么可能不跨平台呢,你们到http://nodejs.org/下载源码,自行编译一下便是。这个是我在XP的cygwin下搞的。
这是官网的话:

1
Node is tested on Linux, Macintosh, and Solaris. It also runs on Windows/Cygwin, FreeBSD, and OpenBSD. The build system requires Python 2.4 or better. V8, on which Node is built, supports only IA-32, x64, and ARM processors. V8 is included in the Node distribution. To use TLS, OpenSSL is required. There are no other dependencies.
回复 引用 查看      
原文地址:https://www.cnblogs.com/lexus/p/2339277.html