All Projects → alt-j → Fast React Server

alt-j / Fast React Server

Licence: mit
[DEPRECATED] Use last versions of React and Node.js for better performance

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Fast React Server

Fast React Render
[DEPRECATED] Use last versions of React and Node.js for better performance
Stars: ✭ 102 (-26.62%)
Mutual labels:  performance, render, server-side-rendering
React Virtual List
Super simple virtualized list React component
Stars: ✭ 597 (+329.5%)
Mutual labels:  performance, render
React Debounce Render
A React higher order component to debounce the rendering of your React components
Stars: ✭ 150 (+7.91%)
Mutual labels:  performance, render
Hyperapp Render
Render Hyperapp to an HTML string with SSR and Node.js streaming support.
Stars: ✭ 93 (-33.09%)
Mutual labels:  render, server-side-rendering
Why Did You Render
why-did-you-render by Welldone Software monkey patches React to notify you about potentially avoidable re-renders. (Works with React Native as well.)
Stars: ✭ 7,695 (+5435.97%)
Mutual labels:  performance, render
Rapscallion
Asynchronous React VirtualDOM renderer for SSR.
Stars: ✭ 1,405 (+910.79%)
Mutual labels:  render, server-side-rendering
Conduit
High Performance Streams Based on Coroutine TS ⚡
Stars: ✭ 135 (-2.88%)
Mutual labels:  performance
Wperf
A simple HTTP load testing utility with detailed performance metrics.
Stars: ✭ 138 (-0.72%)
Mutual labels:  performance
Floyd
The Floyd programming language
Stars: ✭ 133 (-4.32%)
Mutual labels:  performance
Golive
⚡ Live views for GoLang with reactive HTML over WebSockets 🔌
Stars: ✭ 130 (-6.47%)
Mutual labels:  server-side-rendering
React Universally
This starter kit contains all the build tooling and configuration you need to kick off your next universal React project, whilst containing a minimal "project" set up allowing you to make your own architecture decisions (Redux/MobX etc).
Stars: ✭ 1,704 (+1125.9%)
Mutual labels:  server-side-rendering
React Render Server
A node.js server for server-side rendering anything!
Stars: ✭ 138 (-0.72%)
Mutual labels:  server-side-rendering
Fragment Cache
WordPress plugin for partial and async caching.
Stars: ✭ 135 (-2.88%)
Mutual labels:  performance
Micro Memoize
A tiny, crazy fast memoization library for the 95% use-case
Stars: ✭ 135 (-2.88%)
Mutual labels:  performance
Estimo
Evaluates how long the browser will execute your javascript code.
Stars: ✭ 138 (-0.72%)
Mutual labels:  performance
Grofer
A system and resource monitoring tool written in Golang!
Stars: ✭ 135 (-2.88%)
Mutual labels:  performance
163music
🎵163 music web app built with Vue 2.6, server side render, webpack 4
Stars: ✭ 139 (+0%)
Mutual labels:  server-side-rendering
Spacechop
HTTP service for high-level image processing with first-class Docker support.
Stars: ✭ 133 (-4.32%)
Mutual labels:  performance
Sltbench
C++ benchmark tool. Practical, stable and fast performance testing framework.
Stars: ✭ 137 (-1.44%)
Mutual labels:  performance
Image Optimize Command
Easily optimize images using WP CLI
Stars: ✭ 138 (-0.72%)
Mutual labels:  performance

With the release of the new version React and Node.js the performance issue has ceased to be so acute. Use last versions of React and Node.js for better performance.

React Server Build Status Coverage Status

It's high speed react mock for server rendering. You can use it with fast react render, in that case render will be 12 times as fast (see benchmarks) as traditional react rendering (in production mode).

Quick start

npm install fast-react-render fast-react-server
var React = require('fast-react-server');
var ReactRender = require('fast-react-render');

var element = React.createElement(
    React.createClass({
        render: function () {
            return React.createElement('div', {}, this.props.text);
        }
    }),
    {text: 'some text'}
);
console.log(ReactRender.elementToString(element));

If you want use it, you must remember: each component, which you want render, you must declared with this mock (configure you build system for that).

Also fast react server support ES6 classes and Stateless Functions (see examples: es6 and stateless-function).

More examples:

Cache

Fast react server support cache for component which implement in fast react render. See how it use here.

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].