发布于 2015-06-14 00:00:31 | 211 次阅读 | 评论: 0 | 来源: 网友投递
IO.js 服务器端 JS 引擎
IO.js 是为 V8 引擎编写的基于事件 IO 的实现。io.js可以说是彻底从NodeJS里分离出来的一条分支。既然是分支,io.js便也基本兼容NodeJS的各种API,连执行指令也依旧兼容Node的 node XXX (新指令是 iojs XXX )。不过io.js采纳了最新版本的V8引擎,并也将会时刻跟进V8的更新,也因此我们可以轻松地在io.js上抢先使用那些JavaScript ECMA-262规范上的新特性。
io.js 2.3.0 发布,值得关注的改进:
libuv: Upgraded to 1.6.0 and 1.6.1, see full ChangeLog for details. (Saúl Ibarra Corretgé) #1905 #1889. Highlights include:
Fix TTY becoming blocked on OS X
Fix UDP send callbacks to not to be synchronous
Add uv_os_homedir()
(exposed as os.homedir()
, see below)
npm: See full release notes for details. (Kat Marchán) #1899. Highlight:
Use GIT_SSH_COMMAND (available as of Git 2.3)
openssl:
Upgrade to 1.0.2b and 1.0.2c, introduces DHE man-in-the-middle protection (Logjam) and fixes malformed ECParameters causing infinite loop (CVE-2015-1788). See the security advisory for full details. (Shigeki Ohtsu) #1950 #1958
Support FIPS mode of OpenSSL, see README for instructions. (Fedor Indutny) #1890
os: Add os.homedir()
method. (Colin Ihrig) #1791
smalloc: Deprecate whole module. (Vladimir Kurchatkin) #1822
Add new collaborators:
下载:https://github.com/nodejs/io.js/archive/v2.3.0.zip。
IO.js 是为 V8 引擎编写的基于事件 IO 的实现。io.js可以说是彻底从NodeJS里分离出来的一条分支。既然是分支,io.js便也基本兼容NodeJS的各种API,连执行指令也依旧兼容Node的 node XXX (新指令是 iojs XXX )。不过io.js采纳了最新版本的V8引擎,并也将会时刻跟进V8的更新,也因此我们可以轻松地在io.js上抢先使用那些JavaScript ECMA-262规范上的新特性。