Project

hawkins

0.03
Repository is archived
No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
A Jekyll extension that adds in Live Reload
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 3.1
 Project Readme

Build Status

Archived

Hawkins is no longer necessary. Jekyll has had LiveReload functionality since v3.7.0.

Hawkins

Hawkins is a Jekyll 3.1+ plugin that incorporates LiveReload into the Jekyll "serve" process.

How to Use

Add the following into your Gemfile

group :jekyll_plugins do
  gem 'hawkins'
end

Then run jekyll liveserve to serve your files. The liveserve commands takes all the arguments that serve does but with a few extras that allow you to specify the port that LiveReload runs on or how long LiveReload will wait. See the --help for more information.

How It Works

Hawkins uses a WEBrick servlet that automatically inserts a script tag into a page's head section. The script tag points to a LiveReload server running on the same host (by default on port 35729). That server serves livereload.js over HTTP and also acts as a WebSockets server that speaks the LiveReload protocol.

If you don't have a browser that implements WebSockets, you can use the --swf option that will have Hawkins load a Flash file that implements WebSockets.

Using --ignore

LiveReload errs on the side of reloading when it comes to the message it gets. If, for example, a page is ignored but a CSS file linked in the page isn't, the page will still be reloaded if the CSS file is contained in the message sent to LiveReload. Additionally, the path matching is very loose so that a message to reload "/" will always lead the page to reload since every page starts with "/".

A Note on SSL/TLS

If you tell Jekyll to serve your files over SSL/TLS (by specifying the --ssl-cert and --ssl-key options), then LiveReload will attempt to use SSL/TLS as well. If you are using a certificate that a browser would not normally accept (e.g. self-signed or issued by an unknown certificate authority), you will need to create an exception for the server and port that Jekyll is serving content over and also for the server and port that LiveReload is running on. Generally speaking, these exceptions will be "127.0.0.1:4000" and "127.0.0.1:35729".

A Note on Compatibility

Hawkins does not currently work on JRuby. I'm working on figuring out why, but be forewarned.

Troubleshooting

You can add "?LR-verbose=true" onto the URL and LiveReload will log some messages to Firefox's Web Developer Console (or the Chrome equivalent).

Thanks

Lots of thanks to guard-livereload and rack-livereload which provided a lot of the code and ideas that Hawkins uses. And of course thanks to the Jekyll team and LiveReload team for providing outstanding software.

Copyright

Copyright (c) 2014 Alex Wood. See LICENSE.txt for further details.