Skip to content

Super fast server react (rendering 12 times faster than the stock renderer)

License

Notifications You must be signed in to change notification settings

KlonD90/fast-react-server

 
 

Repository files navigation

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.

About

Super fast server react (rendering 12 times faster than the stock renderer)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.8%
  • Shell 3.2%