No commit activity in last 3 years
No release in over 3 years
Reload your Clearwater app without refreshing the browser
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
~> 10.0
>= 0

Runtime

 Project Readme

Clearwater::HotLoader

A complete solution for re-rendering a Clearwater app in development without a full-page reload.

Installation

In your Gemfile:

# This gem is only useful in the development environment
gem 'clearwater-hot_loader', group: :development

Then run bundle to get it installed.

Usage

In order to get hot-loading working, we need to connect three parts:

  1. The filesystem monitor to trigger changes
  2. WebSocket server to notify the client about changes
  3. WebSocket client to receive the push from the server

The examples in this README will have examples for Rails, but we only rely on Rack.

Filesystem Monitor

You kick off the filesystem monitor by running Clearwater::HotLoader.start.

For a Rails app, simply add that command to the end of your config/environments/development.rb file to ensure it only gets run in development.

For Rack apps that aren't based on Rails, you can add this to your config.ru file (above the line beginning with run):

if ENV['RACK_ENV'] == 'development'
  Clearwater::HotLoader.start
end

WebSocket Server

The client needs to know what to connect to in order to listen for changes, so we need to add an endpoint to our web app to make this happen. How you do this depends entirely on which back-end framework you're using, but most Rack-based frameworks (including Rails) have a way to mount another Rack app as the handler for an endpoint.

Note: You want to ensure you're only mounting it in development.

In Rails, add this to your config/routes.rb file:

mount Clearwater::HotLoader, at: '/clearwater_hot_loader' if Rails.env.development?

The Clearwater::HotLoader module contains a Rack server which will handle a WebSocket connection. The filesystem monitor notifies the WebSocket server when files have changed.

WebSocket Client

The WebSocket client listens for updates from the server and executes them, updating the Ruby environment running inside the browser, and then re-renders your Clearwater app. If you have multiple Clearwater apps running on the page, it will re-render all of them.

To connect to the server, simply add this to the top of your Clearwater app:

require 'clearwater/hot_loader'
Clearwater::HotLoader.connect

Simply replace port with the port number on which your app is running. It will be the same port on which your web app is running. For example, if you usually open localhost:3000 to load your web app in the browser, you'll want to connect to port 3000.

Caveats

  • Hot loading involves patching classes and objects that are already loaded. If your code is executing as if being run for the first time, existing app state may be clobbered with fresh state.
  • require statements are ignored for various reasons:
    • Reloading all dependencies is nearly always unnecessary
    • The Opal environment is not designed to be idempotent. Reloading it may clobber the one already loaded.
  • Because of that, if you add an outside dependency, you will likely need to refresh the page.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub.

This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.