有时候我想在REPL中试用一个库。例如,当我需要知道100天后的日期时,我会这样做:
lein try clj-time
(require '[clj-time.core :as t])
(t/plus (t/today) (t/days 100))
或者使用boot:
boot -d clj-time repl -e "(require '[clj-time.core :as t])"
(t/plus (t/today) (t/days 100))
这已经很棒了,但这仍然有几秒的启动时间。
我的问题:我可以使用ClojureScript和Node获得相同的功能,并且启动时间更快吗?如何通过cljs-time获取上述示例?
答案 0 :(得分:1)
您可以将Planck与您想要尝试的jar一起使用,将其添加到Planck的“类路径”中(因为没有涉及JVM,所以它不是真正的类路径)。请参阅Planck Dependencies documentation。
E.g:
planck -c ~/.m2/repository/com/andrewmcveigh/cljs-time/0.4.0/cljs-time-0.4.0.jar