nodejs教程:
http://www.nodebeginner.org/index-zh-cn.html#event-driven-callbacks
官网
安装
https://github.com/joyent/node/wiki/Installation
Understanding node.js
http://debuggable.com/posts/understanding-node-js:4bd98440-45e4-4a9a-8ef7-0f7ecbdd56cb
安装nodejs的时候会出现这个错误:
File "./configure", line 266
o['default_configuration'] = 'Debug' if options.debug else 'Release'
^
SyntaxError: invalid syntax
这个是你的python版本不够或者没有安装
https://groups.google.com/forum/#!msg/nodejs/b8NCoJauipc/xiXCmNsMoQgJ
请去这边安装:
出错:
ImportError: No module named bz2
http://297020555.blog.51cto.com/1396304/593224
理解函数式编程:
http://steve-yegge.blogspot.jp/2006/03/execution-in-kingdom-of-nouns.html
server是单进程的,前往不能调用阻塞进程的操作
npm安装要在本目录下安装,使用npm install XXX
会在本目录下自动生成node_modules目录,这样才算安装成功
nodejs的事件机制
nodejs是事件驱动的,你可以在事件上进行监听,比如request就可以注册两个end和data事件,哪些对象有哪些事件可以监听应该看。更多知识可以看《nodejs手册中文版》
下载地址: