React 0.13.3 发布, 构建用户界面的 JavaScript 库
React 0.13.3 发布,此版本主要有以下更新:
新特性:
-     Added `clipPath` element and attribute for SVG 
-     Improved warnings for deprecated methods in plain JS classes 
Bug 修复:
-     Loosened `dangerouslySetInnerHTML` restrictions so `{__html: undefined}` will no longer throw 
-     Fixed extraneous context warning with non-pure `getChildContext` 
-     Ensure `replaceState(obj)` retains prototype of `obj` 
-     Test Utils: Ensure that shallow rendering works when components define `contextTypes` 
   详细信息请查看:
  https://github.com/非死book/react 
此版本现已提供下载:
React.js 是 非死book 推出的一个用来构建用户界面的 JavaScript 库。
非死book开源了 React,这是该公司用于构建反应式图形界面的JavaScript库,已经应用于构建Instagram网站及非死book部分网站。最近出现了 AngularJS、MeteorJS 和Polymer中实现的Model-Driven Views等框架,React也顺应了这种趋势。React基于在数据模型之上声明式指定用户界面的理念,用户界面会自动与底层数据保持同步。与前面提及 的框架不同,出于灵活性考虑,React使用JavaScript来构建用户界面,没有选择HTML。
示例代码:
/** @jsx React.DOM */  var HelloMessage = React.createClass({    render: function() {      return{'Hello ' + this.props.name};    }  });     React.renderComponent(HelloMessage, mountNode) 来自:www.oschina.net/news/62343/react-0-13-3-released