发布于 2015-08-26 00:19:44 | 94 次阅读 | 评论: 0 | 来源: 网友投递
Node.js 服务器端的JavaScript
Node.js 是一个基于Chrome JavaScript 运行时建立的一个平台, 用来方便地搭建快速的 易于扩展的网络应用· Node.js 借助事件驱动, 非阻塞I/O 模型变得轻量和高效, 非常适合 运行在分布式设备 的 数据密集型 的实时应用
io.js 3.2.0 发布,此版本值得关注的改进如下:
events: Added EventEmitter#listenerCount(event)
as a replacement for EventEmitter.listenerCount(emitter, event)
, which has now been marked as deprecated in the docs. (Sakthipriyan Vairamani) #2349
module: Fixed an error with preloaded modules when the current working directory doesn't exist. (Bradley Meck) #2353
node: Startup time is now about 5% faster when not passing V8 flags. (Evan Lucas) #2483
repl: Tab-completion now works better with arrays. (James M Snell) #2409
string_bytes: Fixed an unaligned write in the handling of UCS2 encoding. (Fedor Indutny) #2480
tls: Added a new --tls-cipher-list
flag that can be used to override the built-in default cipher list. (James M Snell) #2412 Note: it is suggested you use the built-in cipher list as it has been carefully selected to reflect current security best practices and risk mitigation.
更多改进内容请看发行说明,下载:
https://github.com/nodejs/node/archive/v3.2.0.zip。
Node.js 是一个基于Chrome JavaScript 运行时建立的一个平台, 用来方便地搭建快速的 易于扩展的网络应用· Node.js 借助事件驱动, 非阻塞I/O 模型变得轻量和高效, 非常适合 运行在分布式设备 的 数据密集型 的实时应用