react-dom-stream
react-dom-stream copied to clipboard
A streaming server-side rendering library for React.
Hi guys, I was making a small POC with the stream SSR, and React seems to be complaining about the checksum while reattaching the DOM. Just wanted to know if...
After upgrading react to 15.3.0, it shows the following warning message via the server side rendering: > Warning: You are manually calling a React.PropTypes validation function for the `head` prop...
Could you please share an example or a document on **"how to use react-router in react-dom-stream"**?
the build script is not present in the package any way to get ride of minified react?? or update it to version 15???
I see work in progress. Do you wanted an contributor for improve this awesome project?
I'm not sure I fully understand this yet, but if I do, then by the time react-dom-stream gets to a component that throws an error, a status code of 200...
We had a situation where the html trying to set ended up being `undefined`. I would expect this to throw a warning but still render like `react-dom` does. Instead it...
I am rendering a rather large application and the `RenderStream.maxStackDepth` limit of `500` it too high. ``` RangeError: Maximum call stack size exceeded at ReactCompositeComponentMixin._renderValidatedComponent (/node_modules/react-dom-stream/lib/ReactCompositeComponent.js:746:32) at wrapper [as _renderValidatedComponent]...
Consider a simple cached component: ``` javascript class Hello extends React.Component { render() { return Hello {this.props.name} } componentCacheKey() { return this.props.name; } } ``` And usage like this: ```...