nodejs一周动态(2011-04-18/24)
发布于 4年前 作者 fengmk2 3609 次浏览

本文收集一周来业界关于nodejs的相关动态信息及新闻摘要。



Node on iOS




Nathan Rajlich写了篇在iOS上运行Node的文章: NodeJS on iOS.
他建立了一个项目 node-iOS,为了让iOS原生支持Node.
你的手机必须先越狱。

Native Windows Support on v0.6.0


让更多windows开发者加入Nodejs,原生支持node是必须的!

详细请看PPT: http://nodejs.org/codeconf.pdf

Nedis


Nedis (MIT License, npm: nedis) by TJ Holowaychuk is a Redis server implemented with Node.
TJ has posted some benchmarks of it:
SET

nedis: ops 25048, per second 5009.6
redis: ops 54850, per second 10970

GET
nedis: ops 32729, per second 6545.8
redis: ops 54714, per second 10942.8

作者初衷是为了好玩而写了这个模块 ^_^:

He’s written a blog post with more details: Redis Implemented With Node and mentions the background of the project:

[…] however as our team grows larger, and as we add more non-technical team members over at LearnBoost I figured it would be nice help prevent the need for compiling development dependencies.

Will the Rise of Javascript Mean the End of LAMP?



虚拟研讨会:Node.js生态系统之框架、库、最佳实践



Javascript 模板引擎性能比较


根据JavaScript template language shootoff的测试结果:

ORM on Node



  • Node-ORM is a NodeJS module for multiple databases using Object-Relational Mapping.

  • Mongoose is a MongoDB object modeling tool designed to work in an asychronous environment.

  • Nohm is an object relational mapper (ORM) written for node.js and redis.

  • couch-ar is a thin active record implementation for couchDB


SPDY Server on node.js


spdy

最近google的SPDY话题也很火的,果然,在nodejs已经有人实现了一个模块

SPDY Server on node.js: https://github.com/donnerjack13589/node-spdy

The JavaScript Disruption


The JavaScript Disruption: The mainstream programming language for the next ten years will be JavaScript. Once considered a toy language useful only for checking form fields on web pages, JavaScript will come to dominate software development. Why this language and why now?


 
2 回复

看一下那个模版测试的最新版本吧,最快的依然是JR大神的那段代码

这个 http://jsperf.com/dom-vs-innerhtml-based-templating/143 ? 我这边的测试结果还是doT和doU最快喔

回到顶部