Skip to content

alan-saar/ring-webjars

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ring-WebJars

Build Status

Ring middleware to serve static assets from WebJars.

Installation

Include the following dependency in your project.clj file:

[ring-webjars "0.2.0"]

Usage

Require the middleware and add it to your handler.

(require '[ring.middleware.webjars :refer [wrap-webjars]])

(def app (wrap-webjars handler)

WebJar assets will then be served from the following path:

/assets/<webjar>/<asset path>

For example, if you include the [org.webjars/bootstrap "3.3.5"] dependency, then the minified bootstrap CSS will be available at:

/assets/bootstrap/css/bootstrap.min.css

By default assets are placed on the /assets path. You can change the path by specifying a second argument.

(def app (web-webjars handler "/webjars"))

License

Copyright © 2017 James Reeves

Released under the MIT license.

About

Ring middleware to serve assets from WebJars

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Clojure 100.0%