File tree 1 file changed +51
-3
lines changed
1 file changed +51
-3
lines changed Original file line number Diff line number Diff line change 1
- jsify
1
+ JSify
2
2
=====
3
3
4
4
JS merge and minifier
5
5
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.
You can’t perform that action at this time.
0 commit comments