Skip to content

Instantly share code, notes, and snippets.

@doug-wade
Created August 13, 2016 19:35
Show Gist options
  • Save doug-wade/566944f0fb621e4cdf27ec8c5fd63986 to your computer and use it in GitHub Desktop.
Save doug-wade/566944f0fb621e4cdf27ec8c5fd63986 to your computer and use it in GitHub Desktop.
reactive conf talk proposal

React is an amazing library for client-side user interface, and it has the added benefit of being able to be rendered on the server, which is crucial for SEO, SEM, and user experience. However, server-side rendering in practice is significantly more complicated than just calling ReactDOMServer.renderToString and piping out the result, especially if you want to make sure your site loads quickly in a mobile-first world. React Server smoothes out the common problems you run into with React server-side rendering, encodes performance best practices into the framework, and makes it easy to build high performance websites by default.

I'll discuss some of the design decisions we made during development, show our performance improvements, talk about lessons we've learned running React Server in production for a year and a half, and give some hints about the future of React Server, including adding streaming to React core.

Proposed for reactive conf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment