Skip to content

strongh/ring-refresh

 
 

Repository files navigation

Ring-Refresh

Ring-Refresh is a middleware library for Ring that automatically triggers a browser refresh when your source files change.

It achieves this by injecting a small Javascript script into any HTML response triggered by a GET route.

This library is designed for use only in development environments.

Installation

Add the following development dependency to your project.clj file:

[ring-refresh "0.1.1"]

Usage

By default, the middleware monitors the src and resources directories:

(use 'ring.middleware.refresh)

(def app
  (wrap-refresh your-handler))

But it can be customized to include other directories:

(def app
  (wrap-refresh
   your-handler
   ["src" "resources" "checkouts/foo/src"]))

License

Copyright © 2012 James Reeves

Distributed under the Eclipse Public License, the same as Clojure.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Clojure 84.0%
  • JavaScript 16.0%