react-server
                                
                                 react-server copied to clipboard
                                
                                    react-server copied to clipboard
                            
                            
                            
                        :rocket: Blazing fast page load and seamless navigation.
When using the bundleData prop with react-server's Link, any subsequent requests to that page in the same history stack will have an unnecessary XHR page request. Repro steps: 1. Run...
I appreciate the [bikeshare](https://github.com/redfin/react-server/tree/master/packages/react-server-examples/bike-share) example, but what if we need to interact with an HTTP API away from `handleRoute` or the page lifecycle? I'd like to make fine-grained API calls...
This takes some work that used to happen for each request and caches it. This is mostly groundwork for fine-grained instrumentation of page lifecycle methods. It incidentally also slightly reduces...
Not sure what I make of this but to [clean up the TODO notes](https://github.com/redfin/react-server/issues/264), please see if this issue can be resolved. ``` _onClick(e) { // TODO: if OSX &&...
In file packages/react-server/core/components/Link.jsx line 44, mentioned to perform a browser detection for IE8 to IE9 for older compatibility. Eventhough I hate IE other than to download new browsers, much less...
`TODO: We should grab stuff based on what the routes file would get out of require.resolve(dep). Using process.cwd() instead for now.` is mentioned in packages/react-server-cli/src/callerDependency-Mock.js file of line 5. This...
Due to [this change](https://github.com/redfin/react-server/commit/b680c1085c3e58624764498f3a8eb06011692b8b#diff-63f31618d4b2c2d71c8cff9521de2af4R3), react-server will listen `0.0.0.0` by default. Then according to [this](https://github.com/redfin/react-server/commit/b680c1085c3e58624764498f3a8eb06011692b8b#diff-9136ee1eb65230f0af2708097b11ef29R36), the default path for static assets would be `http://0.0.0.0:3000`, which is not accessible in Windows.
I have a page that fetch data when request to page ```js export default class HomePage { handleRoute(next) { this.title = SettingService.getSetting('title_trang_chu').then(result => { return result.value.value; }); return next(); }...
Usually there is a common layout for most of pages so I extracted a single component called `Layout` and every page inherits a `BasePage` which includes ``. Both `BasePage` and...
Is it possible to disable server-side rendering for certain pages? react-server is great for isomorphic rendering, but is also quite a useful server for non-isomorphic pages. Thank you!