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

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