react/npm-react
Paul O’Shannessy 153b75f186 Bump version to 0.9.0-alpha
This is trunk, which will be 0.9. We'll have to cherry-pick this whole
thing into a 0.8 branch.
2013-12-06 15:11:25 -08:00
..
README.md Move npm-react-core to npm-react, fix tasks accordingly 2013-12-06 15:10:15 -08:00
ReactJSErrors.js Move npm-react-core to npm-react, fix tasks accordingly 2013-12-06 15:10:15 -08:00
addons.js Move npm-react-core to npm-react, fix tasks accordingly 2013-12-06 15:10:15 -08:00
package.json Bump version to 0.9.0-alpha 2013-12-06 15:11:25 -08:00
react.js Move npm-react-core to npm-react, fix tasks accordingly 2013-12-06 15:10:15 -08:00

README.md

react-core

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.

The react npm package has recently changed!

If you're looking for jeffbski's React.js project, it's now in npm as reactjs rather than react.

Example Usage


// Previously, you might access React with react-tools.
var React = require('react-tools').React;

// Now you can access React directly with react-core.
var React = require('react');

// You can also access ReactWithAddons.
var React = require('react/addons');