react-helper

5.0.1 • Public • Published

npm Build Status

React Helper

Easily add react to your pre-existing (or new) mvc node application

There are tons of resources and tools out there to help developers get started with react and start a fresh new react app; however, there are not many tools out there to help those who want to add react to an existing app (built with node). React-helper makes it extremely easy to add react components to your views, so you can jump right into writing react components without having to worry too much about setup.

Installing

Adding to your app

npm install react-helper --save

Table of Contents

Features:

  • Setting up is a breeze. Add react to your app with one command using the cli.

    react-helper init -w

  • Extremely easy to add react components to your views.

    Controller:

    const reactHelper = require('react-helper');
    const component = reactHelper.renderComponent('SignUp')
    res.render('view-to-render', {component})

    View: example using handlebars templating engine

    <h1>This view has react in it</h1>
    {{{component}}}
  • Pass server-side data to components: You can easily pass data from your server to your react components.

    Controller: example passing results from mongo query to react component

    db.collection('users').find().toArray(function(err, users) {
      const component = reactHelper.renderComponent('ListUsers', users)
      return res.render('view-to-render', {component})
    }
  • Server-side rendering: use the full power of react by server-side rendering your components by just passing the react component (or its relative path) to react helper instead of a string.

    Controller: example passing results from mongo query to react component

    const reactHelper = require('react-helper');
    const SignUp = require('../path/to/SignUp');
    const component = reactHelper.renderComponent(SignUp) //IT'S THIS EASY
    res.render('view-to-render', {component})      

Getting started

Manually add react-helper to your application

Getting started is simple:

For the examples, I will be using showing snippets of code from an express application using handlebars templating engine, but this helper will work with any framework and templating engine

  1. Create a directory where you will be keeping all of your react code (something like "client"). An express app usually looks similar to this:
project/
  controllers/
  middlewares/
  models/
  public/
  views/
  client/  //<-- New directory  
  1. Within the client directory you will need to create a file that will register your components with react-helper. This file will also be your entry point for webpack (more on that later).

That file should live here:

  ...
  views/
  client/
    //Other organizational directories for your react code
    components/
    index.js  // <-- New file

The file should look something like this:

const reactHelper = require('reactHelper');
const SomeComponent = require('./path/to/a/component');
// Require all components you want to use in your views...


reactHelper.register({SomeComponent});
// Register each of the components you will be using in your views
reactHelper.register({OtherComponent});
  1. Then, in your controller (or whatever code renders your view template) all you have to do is call react-helper's "renderComponent", and pass the results to your view:

Controller:

const reactHelper = require('react-helper');
const component = reactHelper.renderComponent('SignUp')
res.render('view-to-render', {component})

View:

<h1>This view has react in it</h1>
{{{component}}}

Setup

The only setup needed is to add webpack to your project, point it to the react-helper registration file, and include the resulting javascript file in your project.

  1. The only requirement react-helper has for the webpack config is that the entry point is the file that registers all of the components using react-helper.

In the example above it would look something like this:

entry: [
  './client/index.js'
],
  1. Then, assuming your webpack's output looks something like:
output: {
  filename: 'react-bundle.js',
  path: './public/javascript',
},

Adding it to your application would look just like adding any other local javascript file.

<script src="public/javascript/react-bundle.js"></script>

Server side rendering

Server-side rendering can be very useful. This library makes it very easy to server-side render your components. There are two methods to server-side rendering: If you are using JSX in your components and would like to render your components server side - you must use babel-register or pre-compile your files, see https://github.com/babel/example-node-server as an example. More coming soon.

  1. In your controller, pass the relative path of your component instead of the registered component name to renderComponent:

    const reactHelper = require('react-helper')
    const path = require('path')
    const component = reactHelper.renderComponent(path.join(__dirname, '../path/to/SignUp'))
    res.render('view-to-render', {component})
    
  2. Pass the component itself to renderComponent.

    const reactHelper = require('react-helper');
    const SignUp = require('../path/to/SignUp');
    const component = reactHelper.renderComponent(SignUp)
    res.render('view-to-render', {component})
    

Express, Sails, and Hapi

Add react-helper to your favorite node framework by using express-react-helper or hapi-react-helper!

Shout out!

This library is inspired by React On Rails (https://github.com/shakacode/react_on_rails), a library that makes it insanely easy to add react to a Rails application.

Contributing

Feel free to open issues or pull requests!

Dependencies (1)

Dev Dependencies (6)

Package Sidebar

Install

npm i react-helper

Weekly Downloads

34

Version

5.0.1

License

ISC

Unpacked Size

16.9 kB

Total Files

11

Last publish

Collaborators

  • tswayne