Bundle assets with webpack, resolve and compile opal ruby files and import them in the bundle, without sprockets or the webpacker gem (but can be used with both of them too). Includes a loader and resolver plugin for webpack.
At the Isomorfeus Framework Project
- comes with a installer for rails and other frameworks
- webpack based build process
- very fast, asynchronous and parallel builds of opal code: opal-webpack-loader-0.7.1 compiles all of opal, a bunch of gems and over 19000SLC on a Intel® Core™ i7-7700HQ CPU @ 2.80GHz × 8, with 8 workers in around 1850ms
- support for memcached or redis as compiler cache
- fast builds on windows too, parallel when building multiple assets with parallel-webpack
- opal modules are packaged as es6 modules
- support for rails with webpacker
- other webpack features become available, like:
- source maps
- multiple targets: web (for browsers), node (for server side rendering) and webworker (for Web Workers)
- hot module reloading for opal ruby code and stylesheets and html views
- tree shaking
- code splitting
- lazy loading
- everything else webpack can do, like loading stylesheets, etc.
-
npm or yarn
-
opal-webpack-loader consists of 2 parts, the npm package and the gem, both are required and must be the same version.
-
webpack ^5.50
-
optional webpack-dev-server ^^4.0.0-rc.0 for development configurations
-
the ES6 modules branch of opal
-
PR#2266, based on Opal 1.2.0 using javascript string primitives and providing nice features like
require_lazy 'my_module'
gem 'opal', github: 'janbiedermann/opal', branch: 'es6_modules_1_2'
-
-
if you have the webpacker gem installed somewhere, it should be a version supporting webpack 4
-
ruby, version 2.5 or higher recommended
-
bundler, latest version recommended
First install the gem:
gem install 'opal-webpack-loader'
Continue here:
- Install for Rails like projects
- Install for Cuba, Roda, Sinatra and other projects with a flat structure
- Manual Installation
After installing owl with the installer, three scripts are provided in package.json:
development
- runs the webpack-dev-server, use for general development, provides fast reloads, entry is application.jsdebug
- runs the webpack-dev-server, use for debugging, provides source maps, entry is application_debug.js. Additional debugging tools may be added there.production_build
- runs webpack to build assets for production, entry is application.js
These scripts can for example be run with:
yarn run debug
or npm run debug
The default config provides several targets and entries:
- Browser: the webpack target is 'web' and the javascript entry file for imports is
application.js
- general use for the application with all browser features, the opal ruby entry file isopal_loader.rb
in the opal or app/opal directory of the app. - Server Side Rendering: the webpack target is
node
and the javascript entry file for imports isapplication_ssr.js
- general use for the application server side rendering, several Browser features are unavailable, nowindow
, nodocument
, some node features are available, likeBuffer
, the opal ruby entry file isopal_loader.rb
in the opal or app/opal directory of the app. (meant to be used with isomorfeus-speednode, standard ExecJS limitations prevent certain webpack features) - Web Worker: the webpack target is 'webworker' and the javascript entry file for imports is
application_webworker.js
- used to initialize Web Workers in the browser, the opal ruby entry file isopal_webworker_loader.rb
in the opal or app/opal directory of the app.
Only the browser target is build by default. To builds the other target, just add the needed targets to the last line of the webpack config,
for example to development.js
:
default config:
module.exports = [ browser ];
modified config with ssr and web_worker targets enabled:
module.exports = [ browser, ssr, web_worker ];
Same works for the debug.js
and production.js
webpack config files.
Also a Procfile has been installed, for rails its easy to startup rails and webpack with foreman:
foreman start
(gem install foreman
if you dont have it already). It will start rails and webpack-dev-server with the development script.
For non rails installation check the Procfile and add a starter for your app.
For rails installations with the installer they all go into: app/opal
, for flat installations in the opal
directory.
In this directory there already is a opal_loader.rb
which is the entry point for your app.
Stylesheets are hot reloaded too with the default config installed by the installer. Also they are imported into application.js by default.
For rails like applications stylesheets are in app/assets/stylesheets/application.css
, for flat applications they are in styles/application.css
.
SCSS is supported too by the default config.
For rails like applications a watcher for app/views
is installed by default. The watcher will trigger a page reload when views are changed.
For flat applications nothing is configured by default, as there are to many ways to generate views, they are not even needed with
frameworks like isomorfeus. Instead the section for configuring a view watcher is included in the development.js and debug.js webpack
config, but it is commented out. Please see those files and adjust to your liking.
Since version 0.8.0 the number of CPUs is automatically determined and a appropriate number of of compile server workers is started automatically.
The projects directory for opal ruby files must be in the opal load path. This is done in the initializer for rails apps in config/initializers/opal_webpack_loader.rb or in 'owl_init.rb' for non rails apps, for example:
Opal.append_path(File.realdirpath('app/opal'))
In Rails or frameworks that support javscript_include_tag
, add to the app/helpers/application_helper.rb
module ApplicationHelper
include OpalWebpackLoader::RailsViewHelper
in other frameworks that dont have a javascript_include_tag
:
module MyProjectsViewThings
include OpalWebpackLoader::ViewHelper
Then you can use in your views:
owl_script_tag('application.js')
For non rails projects, determining Opal load paths, for the resolver and compile server to work properly, may not be obvious. For these cases
a file app_loader.rb
in the projects root can be created which just loads all requirements without starting anything.
Usually it would just setup bundler with the appropriate options, for example:
require 'bundler/setup'
if ENV['RACK_ENV'] && ENV['RACK_ENV'] == 'test'
Bundler.require(:default, :test)
elsif ENV['RACK_ENV'] && ENV['RACK_ENV'] == 'production'
Bundler.require(:default, :production)
else
Bundler.require(:default, :development)
end
Opal.append_path(File.realdirpath('opal')) # this is a good place to add the directory with opal files to the opal load path
When this file exists, the compile server will load it and generate Opal load paths accordingly for the resolver.
These setting are in the initializer in config/initializers/opal_webpack_loader.rb for rails like apps, or owl_init.rb for others.
OpalWebpackLoader.use_manifest = false
If the manifest file should be used, use_manifest should be true.
OpalWebpackLoader.manifest_path = File.join(Dir.getwd, 'public', 'assets', 'manifest.json')
Sets the path to the webpack (with the webpack-manifest-plugin) generated manifest.json to look up assets.
OpalWebpackLoader.client_asset_path = 'http://localhost:3035/assets/'
The path to prepend to the assets as configured in the webpack config 'publicPath'.
In the config example below its publicPath: 'http://localhost:3025/assets'
so
client_asset_path should be set to the same.
For production use with readily precompiled and compressed assets which contain a fingerprint in the name (webpacks [chunkhash]), and if the path in the manifest is the full path to the asset as configured in webpack, these settings would work:
OpalWebpackLoader.use_manifest = true
OpalWebpackLoader.manifest_path = File.join(Dir.getwd, 'public', 'assets', 'manifest.json')
OpalWebpackLoader.client_asset_path = ''
For development use with webpack-dev-server, with no manifest, these settings would work:
OpalWebpackLoader.use_manifest = false
OpalWebpackLoader.manifest_path = File.join(Dir.getwd, 'public', 'assets', 'manifest.json') # doesn't matter, not used
OpalWebpackLoader.client_asset_path = 'http://localhost:3035/assets/'
- clone the repo
bundle install
bundle exec rspec