A Mezzio 3 Skeleton Application with React.js integration.
- SPA application with React Router DOM with cached pages after visited.
- Using server side template from Mezzio 3, eval'd with DOMPurify it first.
- Webpack support for production
1. Run composer create-project command:
composer create-project samsonasik/mezzio-react
composer development-enable2. Run PHP Development server
cd mezzio-react
composer serve3. Open web browser http://localhost:8080
For deploy to production purpose, it has webpack.config.js in root directory that when we run webpack command, we can get public/js/dist/bundle.js after run it. If you don't have a webpack installed yet in your system, you can install nodejs and install webpack and webpack-cli:
sudo npm install -g webpack
sudo npm install -g webpack-cliSo, we can run:
webpack
Hash: 0dedd8dd8641d88b7665
Version: webpack 4.43.0
Time: 173ms
Built at: 06/26/2020 9:02:37 PM
Asset Size Chunks Chunk Names
public/js/dist/bundle.js 3.33 KiB 0 [emitted] main
Entrypoint main = public/js/dist/bundle.js
[0] ./public/js/app.js + 2 modules 6.32 KiB {0} [built]
| ./public/js/app.js 1.62 KiB [built]
| ./public/js/create-page.js 1.36 KiB [built]
| ./public/js/Navigation.js 3.33 KiB [built]After it generated, we can run the following commands to get production environment by default:
# disable dev
composer development-disable
# install with --no-dev
composer install --no-devIn default.phtml, we have a isDevelopment() view helper check to use js/app.js when on development, and use /js/dist/bundle.js on production when exists.
// src/App/templates/layout/default.phtml
$isDevelopment = $this->isDevelopment();
// ...
->prependFile(
$isDevelopment
? '/js/app.js'
: (
// when after run webpack, allow to use bundled js
// fallback to use /js/app.js when not
file_exists('./public/js/dist/bundle.js')
? '/js/dist/bundle.js'
: '/js/app.js'
),
'module'
)
// ...that will automatically take care of that.