1. Code
  2. JavaScript
  3. React

Bridging React With Other Popular Web Languages

Scroll to top

React is a view library written in JavaScript, and so it is agnostic of any stack configuration and can make an appearance in practically any web application that is using HTML and JavaScript for its presentation layer.

As React works as the ‘V’ in ‘MVC’, we can create our own application stack from our preferences. So far in this guide we have seen React working with Express, a Node ES6/JavaScript-based framework. Other popular Node-based matches for React are the Meteor framework and Facebook’s Relay.

If you want to take advantage of React’s excellent component-based JSX system, the virtual DOM and its super-fast rendering times with your existing project, you can do so by implementing one of the many open-source solutions.

PHP

As PHP is a server-side scripting language, integration with React can come in several forms:

Server-Side Rendering

For rendering React components on the server, there is a library available on GitHub.

For example, we can do the following in PHP with this package:

1
2
<?php // the library
3
$react_source = file_get_contents('/path/to/build/react.js');
4
// all custom code concatenated
5
$app_source = file_get_contents('/path/to/custom/components.js');
6
7
$rjs = new ReactJS($react_source, $app_source);
8
$rjs->setComponent('MyComponent', array(
9
  'any'   =>  1,
10
  'props' =>  2
11
  )
12
);
13
14
// print rendered markup
15
echo '' . $rjs->getMarkup() . '';
16
17
// load JavaScript somehow - concatenated, from CDN, etc
18
// including react.js and custom/components.js
19
20
// init client
21
echo '' . $rjs->getJS("#here") . ''; 
22
23
// repeat setComponent(), getMarkup(), getJS() as necessary
24
// to render more components

The power of combining React with any server-side scripting language is the ability to feed React with data, and apply your business logic on the server as well as the client side. Renovating an old application into a Reactive app has never been easier!

Using PHP + Alto Router

For an example application, take a look at this repository on GitHub.

Configure your AltoRouter as so:

1
2
<?php // Router setup
3
require_once 'include/AltoRouter/AltoRouter.php';
4
$router = new AltoRouter();
5
$viewPath = 'views/';
6
7
// Router matches
8
//---
9
// Manual
10
$router->map('GET', '/', $viewPath . 'reactjs.html', 'reactjs');
11
12
$result = $viewPath . '404.php';
13
14
$match = $router->match();
15
if($match) {
16
	$result = $match['target'];
17
}
18
19
// Return route match 
20
include $result;
21
22
?>

With the AltoRouter setup serving your application’s pages for the routes specified, you can then just include your React code inside the HTML markup and begin using your components.

JavaScript:

1
2
"use strict";
3
4
var Comment = React.createClass({
5
  displayName: "Comment",
6
7
  render: function render() {
8
    var rawMarkup = marked(this.props.children.toString(), { sanitize: true });
9
    return React.createElement(
10
      "div",
11
      { className: "comment" },
12
      React.createElement(
13
        "h2",
14
        { className: "commentAuthor" },
15
        this.props.author
16
      ),
17
      React.createElement("span", { dangerouslySetInnerHTML: { __html: rawMarkup } })
18
    );
19
  }
20
});

Ensure you include the React libraries and also place the HTML inside the body tag that will be served from your PHP AltoRouter app, for example:

1
2
3
4
  
5
    React Example
6
    
7
    
8
    
9
    
10
  
11
  
12
    
13
    
14
  
15

Laravel Users

For the highly popular PHP framework Laravel, there is the react-laravel library, which enables React.js from right inside your Blade views.

For example:

1
2
@react_component('Message', [ 'title' => 'Hello, World' ], [ 'prerender' => true ])

The prerender flag tells Laravel to render the component on the server side and then mount it to the client side.

Example Laravel 5.2 + React App

Look at this excellent starter repository for an example of getting Laravel + React working by Spharian.

To render your React code inside your Laravel, set your React files’ source inside the index.blade.php body tag, by adding the following for example:

1
2

.NET

Using the ReactJS.NET framework, you can easily introduce React into your .NET application.

Install the ReactJS.NET package to your Visual Studio IDE via the NuGET package manager for .NET.

Search the available packages for ‘ReactJS.NET (MVC 4 and 5)’ and install. You will now be able to use any .jsx extension code in your asp.net app.

Add a new controller to your project to get started with React + .NET, and select “Empty MVC Controller” for your template. Once it is created, right click on return View() and add a new view with the following details:

  • View name: Index
  • View Engine: Razor (CSHTML)
  • Create a strongly-typed view: Unticked
  • Create as a partial view: Unticked
  • Use a layout or master page: Unticked

Now you can replace the default code with the following:

1
2
@{
3
    Layout = null;
4
}
5
6
7
    Hello React
8
9
10
    
11
    
12
    
13
    
14
15

Now we need to create the Example.jsx referenced above, so create the file in your project and add your JSX as follows:

1
2
var CommentBox = React.createClass({
3
  render: function() {
4
    return (
5
      
6
        Hello, world! I am a CommentBox.
7
      
8
    );
9
  }
10
});
11
ReactDOM.render(
12
  ,
13
  document.getElementById('content')
14
);

Now if you click Play in your Visual Studio IDE, you should see the Hello World comment box example.

Here’s a detailed tutorial on writing a component for asp.net.

Rails

By using react-rails, you can easily add React to any Rails (3.2+) application. To get started, just add the gem:

1
2
gem 'react-rails', '~> 1.7.0'

and install:

1
2
bundle install

Now you can run the installation script:

1
2
rails g react:install

This will result in two things:

  • A components.js manifest file in app/assets/javascripts/components/; this is where you will put all your components code.
  • Adding the following to your application.js:
1
2
//= require react
3
//= require react_ujs
4
//= require components

Now .jsx code will be rendering, and you can add a block of React to your template, for example:

1
2
3
4

Ruby JSX

Babel is at the heart of the Ruby implementation of the react-rails gem, and can be configured as so:

1
2
config.react.jsx_transform_options = {
3
  blacklist: ['spec.functionName', 'validation.react', 'strict'], # default options
4
  optional: ["transformerName"],  # pass extra babel options
5
  whitelist: ["useStrict"] # even more options
6
}

Once react-rails is installed into your project, restart your server and any .js.jsx files will be transformed in your asset pipeline.

For more information on react-rails, go to the official documentation.

Python

To install python-react, use pip like so:

1
2
pip install react

You can now render React code with a Python app by providing the path to your .jsx components and serving the app with a render server. Usually this is a separate Node.js process.

To run a render server, follow this easy short guide.

Now you can start your server as so:

1
2
node render_server.js

Start your python application:

1
2
python app.py

And load up http://127.0.0.1:5000 in a browser to see your React code rendering.

Django

Add react to your INSTALLED_APPS and provide some configuration as so:

1
2
INSTALLED_APPS = (
3
    # ...
4
    'react',
5
)
6
7
REACT = {
8
    'RENDER': not DEBUG,
9
    'RENDER_URL': 'http://127.0.0.1:8001/render',
10
}
11

Meteor

To add React to your meteor project, do so via:

1
2
meteor npm install --save react react-dom

Then in client/main.jsx add the following for example:

1
2
import React from 'react';
3
import { Meteor } from 'meteor/meteor';
4
import { render } from 'react-dom';
5
 
6
import App from '../imports/ui/App.jsx';
7
 
8
Meteor.startup(() => {
9
  render(, document.getElementById('render-target'));
10
});

This is instantiating an App React component, which you will define in imports/ui/App.jsx, for example:

1
2
import React, { Component } from 'react';
3
4
import Headline from './Headline.jsx';
5
6
// The App component - represents the whole app
7
export default class App extends Component {
8
  getHeadlines() {
9
    return [
10
      { _id: 1, text: 'Legalisation of medical marijuana goes worldwide!' },
11
      { _id: 2, text: 'Matt Brown goes inside the cult of scientology' },
12
      { _id: 3, text: 'The deep web: A criminals dream or fascinating freedom?' },
13
    ];
14
  }
15
 
16
  renderHeadlines() {
17
    return this.getHeadlines().map((headline) => (
18
      
19
    ));
20
  }
21
 
22
  render() {
23
    return (
24
      
25
        
26
          The latest headlines
27
        
28
 
29
        
30
          {this.renderHeadlines()}
31
        
32
      
33
    );
34
  }
35
}

Inside the Headline.jsx, you use the following code:

1
2
import React, { Component, PropTypes } from 'react';
3
 
4
// Headline component - this will display a single news headline item from a iterated array
5
export default class Headline extends Component {
6
  render() {
7
    return (
8
      
9
<li>{this.props.headline.text}</li>
10
    );
11
  }
12
}
13
 
14
Headline.propTypes = {
15
  // This component gets the headline to display through a React prop.
16
  // We can use propTypes to indicate it is required
17
  headline: PropTypes.object.isRequired,
18
};
19

Meteor is ready for React and has official documentation.

No More {{handlebars}}

An important point to note: When using Meteor with React, the default {{handlebars}} templating system is no longer used as it is defunct due to React being in the project.

So instead of using {{&gt; TemplateName}} or Template.templateName for helpers and events in your JS, you will define everything in your View components, which are all subclasses of React.component.

Conclusion

React can be used in practically any language which utilises an HTML presentation layer. The benefits of React can be fully exploited by a plethora of potential software products.

React makes the UI View layer become component-based. Working logically with any stack means that we have a universal language for interface that designers across all facets of web development can utilise.

React unifies our projects’ interfaces, branding and general contingency across all deployments, no matter the device or platform restraints. Also in terms of freelance, client-based work or internally inside large organisations, React ensures reusable code for your projects.

You can create your own bespoke libraries of components and get working immediately inside new projects or renovate old ones, creating fully reactive isometric application interfaces quickly and easily.

React is a significant milestone in web development, and it has the potential to become an essential tool in any developer’s collection. Don’t get left behind.

Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Code tutorials. Never miss out on learning about the next big thing.
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.