react
An npm package to get you immediate access to React,
without also requiring the JSX transformer. This is especially useful for cases where you
want to browserify
your module using
React
.
Note: by default, React will be in development mode. The development version includes extra warnings about common mistakes, whereas the production version includes extra performance optimizations and strips all error messages.
To use React in production mode, set the environment variable NODE_ENV
to production
. A minifier that performs dead-code elimination such as UglifyJS is recommended to completely remove the extra code present in development mode.
Example Usage
var React = require('react');
var React = require('react/addons');
0.12.2 (December 18, 2014)
React Core
- Added support for more HTML attributes:
formAction
, formEncType
, formMethod
, formTarget
, marginHeight
, marginWidth
- Added
strokeOpacity
to the list of unitless CSS properties
- Removed trailing commas (allows npm module to be bundled and used in IE8)
- Fixed bug resulting in error when passing
undefined
to React.createElement
- now there is a useful warning
React Tools
- JSX-related transforms now always use double quotes for props and
displayName