PHP code example of nodejs-php-fallback / react

1. Go to this page and download the library: Download nodejs-php-fallback/react library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nodejs-php-fallback / react example snippets




use NodejsPhpFallback\React;

// Require the composer autload in your PHP file if it's not already.
// You do not need to if you use a framework with composer like Symfony, Laravel, etc.
:
header('Content-type: text/javascript');
echo $react;

// You can also get react code from a string:
$react = new React('
ReactDOM.render(
    <h1>Hello world!</h1>,
    document.getElementById("main")
);
');
// Then write JS with:
$react->write('path/to/my-js-file.js');
// or get it with:
$jsContents = $react->getResult();

// Get source map contents:
$sourceMap = $react->getSourceMap();

// Get source map path:
$sourceMap = $react->getSourceMapFile();

// Pass false to the React constructor if you do not need source map:
$react = new React('path/to/my-react-file.jsx', false);
composer