Mohammad Asif cf937194cb Removed un-waned things 1. преди 6 месеца
..
cjs cf937194cb Removed un-waned things 1. преди 6 месеца
node_modules cf937194cb Removed un-waned things 1. преди 6 месеца
umd cf937194cb Removed un-waned things 1. преди 6 месеца
LICENSE cf937194cb Removed un-waned things 1. преди 6 месеца
README.md cf937194cb Removed un-waned things 1. преди 6 месеца
build-info.json cf937194cb Removed un-waned things 1. преди 6 месеца
index.js cf937194cb Removed un-waned things 1. преди 6 месеца
package.json cf937194cb Removed un-waned things 1. преди 6 месеца
profiling.js cf937194cb Removed un-waned things 1. преди 6 месеца
server.browser.js cf937194cb Removed un-waned things 1. преди 6 месеца
server.js cf937194cb Removed un-waned things 1. преди 6 месеца
server.node.js cf937194cb Removed un-waned things 1. преди 6 месеца
test-utils.js cf937194cb Removed un-waned things 1. преди 6 месеца

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