zhaojinyu 73e6d881c9 first commit il y a 1 semaine
..
cjs 73e6d881c9 first commit il y a 1 semaine
node_modules 73e6d881c9 first commit il y a 1 semaine
umd 73e6d881c9 first commit il y a 1 semaine
LICENSE 73e6d881c9 first commit il y a 1 semaine
README.md 73e6d881c9 first commit il y a 1 semaine
build-info.json 73e6d881c9 first commit il y a 1 semaine
index.js 73e6d881c9 first commit il y a 1 semaine
package.json 73e6d881c9 first commit il y a 1 semaine
profiling.js 73e6d881c9 first commit il y a 1 semaine
server.browser.js 73e6d881c9 first commit il y a 1 semaine
server.js 73e6d881c9 first commit il y a 1 semaine
server.node.js 73e6d881c9 first commit il y a 1 semaine
test-utils.js 73e6d881c9 first commit il y a 1 semaine
unstable-fizz.browser.js 73e6d881c9 first commit il y a 1 semaine
unstable-fizz.js 73e6d881c9 first commit il y a 1 semaine
unstable-fizz.node.js 73e6d881c9 first commit il y a 1 semaine
unstable-native-dependencies.js 73e6d881c9 first commit il y a 1 semaine

README.md

react-dom

This package serves as the entry point to the DOM and server renderers for React. It is intended to be paired with the generic React package, which is shipped as react to npm.

Installation

npm install react react-dom

Usage

In the browser

var React = require('react');
var ReactDOM = require('react-dom');

class MyComponent extends React.Component {
  render() {
    return <div>Hello World</div>;
  }
}

ReactDOM.render(<MyComponent />, node);

On the server

var React = require('react');
var ReactDOMServer = require('react-dom/server');

class MyComponent extends React.Component {
  render() {
    return <div>Hello World</div>;
  }
}

ReactDOMServer.renderToString(<MyComponent />);

API

react-dom

  • findDOMNode
  • render
  • unmountComponentAtNode

react-dom/server

  • renderToString
  • renderToStaticMarkup