Skip to content

Commit 0b3aea9

Browse files
committed
Update README.md
1 parent 3ea2543 commit 0b3aea9

File tree

1 file changed

+51
-3
lines changed

1 file changed

+51
-3
lines changed

README.md

+51-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,55 @@
1-
jsify
1+
JSify
22
=====
33

44
JS merge and minifier
55

6-
Latest release:
7-
'[jsify "0.1.1-SNAPSHOT"]
6+
## Installation
7+
8+
Add the following dependency to your `project.clj` file:
9+
10+
[jsify "0.1.1-SNAPSHOT"]
11+
12+
## Example
13+
14+
```clojure
15+
(require '[jsify :as jsify])
16+
17+
(def jsify-settings {
18+
:engine :v8
19+
:cache-mode :development
20+
:compress false
21+
:cache-root "resources/public/js/"
22+
:asset-roots "resources/private/js/"
23+
:log-level :quiet
24+
})
25+
```
26+
27+
For noir
28+
29+
```clojure
30+
(noir/add-middleware jsify/jsify-middleware jsify-settings)
31+
```
32+
33+
For ring
34+
35+
```clojure
36+
(-> app (jsify/jsify-middleware jsify-settings))
37+
```
38+
39+
In your html simply add
40+
```html
41+
<script src="/js/app.jsify"></script>
42+
```
43+
44+
resources/private/js/app.jsify will look like this:
45+
46+
```clojure
47+
[
48+
"plugin.jquery.js"
49+
"init.js"
50+
"assets/"
51+
"more.js"
52+
]
53+
```
54+
55+
JSify will only rebuild the javascript when files are changed.

0 commit comments

Comments
 (0)