caipin 262030214c cld2_react构建中 5 years ago
..
cjs 262030214c cld2_react构建中 5 years ago
umd 262030214c cld2_react构建中 5 years ago
LICENSE 262030214c cld2_react构建中 5 years ago
README.md 262030214c cld2_react构建中 5 years ago
build-info.json 262030214c cld2_react构建中 5 years ago
index.js 262030214c cld2_react构建中 5 years ago
package.json 262030214c cld2_react构建中 5 years ago
profiling.js 262030214c cld2_react构建中 5 years ago
server.browser.js 262030214c cld2_react构建中 5 years ago
server.js 262030214c cld2_react构建中 5 years ago
server.node.js 262030214c cld2_react构建中 5 years ago
test-utils.js 262030214c cld2_react构建中 5 years ago
unstable-fizz.browser.js 262030214c cld2_react构建中 5 years ago
unstable-fizz.js 262030214c cld2_react构建中 5 years ago
unstable-fizz.node.js 262030214c cld2_react构建中 5 years ago
unstable-native-dependencies.js 262030214c cld2_react构建中 5 years ago

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