All Projects → redfin → React Server

redfin / React Server

Licence: apache-2.0
🚀 Blazing fast page load and seamless navigation.

Programming Languages

javascript
184084 projects - #8 most used programming language
Less
1899 projects
SCSS
7915 projects
CSS
56736 projects
shell
77523 projects
Dockerfile
14818 projects
Sass
350 projects

Projects that are alternatives of or similar to React Server

Hackernews
HackerNews clone built with Nuxt.js
Stars: ✭ 758 (-80.72%)
Mutual labels:  universal, isomorphic, ssr
webpack-isomorphic-compiler
A compiler that makes your life easier if you are building isomorphic webpack powered apps, that is, single page applications with server-side rendering
Stars: ✭ 16 (-99.59%)
Mutual labels:  isomorphic, universal, ssr
react-ssr-starter
📚 Featuring Webpack 4, React 17-18, SSR, HMR, prefetching, universal lazy-loading, and more
Stars: ✭ 18 (-99.54%)
Mutual labels:  isomorphic, universal, ssr
Nuxt.js
The Intuitive Vue(2) Framework
Stars: ✭ 38,986 (+891.51%)
Mutual labels:  universal, isomorphic, ssr
Koa React Universal
lightweight React-Koa2 universal boilerplate, only what is essential
Stars: ✭ 112 (-97.15%)
Mutual labels:  universal, isomorphic, ssr
Celestite
Beautifully reactive, server-side rendered Svelte apps w/ a Crystal backend
Stars: ✭ 185 (-95.3%)
Mutual labels:  universal, isomorphic, ssr
Razzle Material Ui Styled Example
Razzle Material-UI example with Styled Components using Express with compression
Stars: ✭ 117 (-97.02%)
Mutual labels:  universal, isomorphic, ssr
Beidou
🌌 Isomorphic framework for server-rendered React apps
Stars: ✭ 2,726 (-30.67%)
Mutual labels:  universal, isomorphic, ssr
isomorphic-react-redux-saga-ssr
Isomorphic, React, Redux, Saga, Server Side rendering, Hot Module Reloading, Ducks, Code Splitting
Stars: ✭ 19 (-99.52%)
Mutual labels:  isomorphic, ssr
universal-progressive-todos
A Todo list with universal JavaScript & Progressive Enhancement
Stars: ✭ 30 (-99.24%)
Mutual labels:  isomorphic, universal
react-ssr-spa
Server side rendered single page app using reactjs official libraries.
Stars: ✭ 30 (-99.24%)
Mutual labels:  isomorphic, universal
redux-pluto
redux pluto
Stars: ✭ 75 (-98.09%)
Mutual labels:  isomorphic, universal
react-ssr-hydration
Example of React Server Side Rendering with Styled Components and Client Side Hydration
Stars: ✭ 15 (-99.62%)
Mutual labels:  isomorphic, universal
Universal Nest
Nest + Angular Universal = ❤️ by @TrilonIO
Stars: ✭ 258 (-93.44%)
Mutual labels:  universal, ssr
fastify-vite
This plugin lets you load a Vite client application and set it up for Server-Side Rendering (SSR) with Fastify.
Stars: ✭ 497 (-87.36%)
Mutual labels:  isomorphic, universal
FlipED
A LMS built specifically for Thailand's Education 4.0 system.
Stars: ✭ 24 (-99.39%)
Mutual labels:  isomorphic, universal
React Head
⛑ SSR-ready Document Head tag management for React 16+
Stars: ✭ 262 (-93.34%)
Mutual labels:  isomorphic, ssr
movies
Real world isomorphic application for movies search, based on Webpack 5 / Express / React 17 + Redux-Saga / Bootstrap 4.6 + CSS Modules / i18next / SSR
Stars: ✭ 20 (-99.49%)
Mutual labels:  isomorphic, ssr
Jackblog React
Jackblog react 版, 个人博客系统, 使用服务端渲染(Universal / Isomorphic), react, redux, react-router, react-bootstrap, immutablejs, redux-form等
Stars: ✭ 292 (-92.57%)
Mutual labels:  universal, isomorphic
Angular Ssr
Angular 4+ server-side rendering solution compatible with @angular/material, jQuery, and other libraries that touch the DOM (as well as providing a rich feature set!)
Stars: ✭ 283 (-92.8%)
Mutual labels:  isomorphic, ssr

React Server is now defunct

Consider Next.js instead.

React Server

Build Status NPM version NPM downloads per month Chat on Slack NPM license Powered by Redfin

React framework with server render for blazing fast page load and seamless transitions between pages in the browser.


Just getting started with react-server?

The easiest way to get started is with our yeoman generator:

# install yeoman
npm install -g yo

# install the react-server generator
npm install -g generator-react-server

# make a new react-server project in the CURRENT directory
yo react-server

# run the new app
npm run start
# go to http://localhost:3000

That hooks you up with react-server-cli, which will take care of the server part and get you up and running right away.

Why react-server?

One of the great things about React is its support for server-side rendering, which can make sites show up faster for users and play better with search engine bots.

However, when you actually try to use React for server-side rendering, you quickly run into a bunch of practical problems, such as:

  • How should I load data on the server for my components?
  • How do I ensure that the client and the server load the same data and generate the same HTML markup?
  • How do I write code that can be both generated server-side and be part of a single-page application (SPA)?
  • How should I optimize the delivery of my JavaScript and CSS?
  • How do I find out about and follow performance best practices?
  • How do I ensure that my site is streamed to the browser as quickly as humanly possible?
  • How can I make my app resilient when my backend has high latency spikes?

react-server is a framework designed to make universal (née isomorphic) React easier to write, providing standard answers for these questions and more. When you write your app for react-server, you concentrate on your React components, and react-server takes care of everything else that's needed to run and deploy real React server-rendered apps. Under the hood, react-server is doing a bunch of clever optimizations, many borrowed from the ideas behind Facebook's Big Pipe, to make sure that your site shows up as quickly as humanly possible for your users.

Once you're hungry for more, dig into the React Server documentation and the react-server code.


Migrating from react-server 0.8.1 to 1.0.0

This release is a major, potentially breaking, change which upgrades react-server's dependencies from webpack 1.x to webpack 4.x, and babel 6.x to babel 7.x.

If using default react-server configuration, you should be able to update to 1.0.0 without issue. However, if you have extended the default react-server webpack config using the webpackConfig option, you may need to update your webpack configuration options to match Webpack 4.x Documentation.

Note: If you are having trouble loading css bundles in mode = production, try switching from import to require() syntax. https://github.com/webpack-contrib/mini-css-extract-plugin/issues/27

Want to help?

Great! There's a lot to do! See the contributing guide to get started.

Where's all the code?!

This is a Lerna respository with multiple npm packages! Check out the packages/ directory 👀.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].