This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-03-17
Channels
- # admin-announcements (4)
- # beginners (35)
- # boot (183)
- # cider (28)
- # cljs-dev (4)
- # cljsjs (1)
- # cljsrn (5)
- # clojure (52)
- # clojure-austin (4)
- # clojure-russia (83)
- # clojure-sdn (1)
- # clojure-uk (18)
- # clojurescript (48)
- # core-matrix (5)
- # cursive (4)
- # datomic (23)
- # devcards (2)
- # dirac (43)
- # editors (2)
- # emacs (4)
- # events (5)
- # funcool (2)
- # hoplon (81)
- # immutant (3)
- # juxt (3)
- # ldnclj (1)
- # luminus (12)
- # off-topic (6)
- # om (72)
- # onyx (32)
- # parinfer (2)
- # pedestal (1)
- # proton (6)
- # protorepl (3)
- # re-frame (30)
- # reagent (2)
- # spacemacs (2)
- # specter (1)
- # testing (1)
- # uncomplicate (3)
- # untangled (15)
- # yada (10)
Any idea why it’s looking for a user.clj file on booting the cljs project? Also I can pull in libs with (require ‘cljs-time.core)
.
[32mSuccessfully compiled “dist/proj.js" in 50.218 seconds.[0m
nREPL server started on port 63173 on host 127.0.0.1
user=>
Refreshing code...
Refresh failed: FileNotFoundException Could not locate user__init.class or user.clj on classpath. clojure.lang.RT.load (RT.java:456)
user is the default namespace when the REPL starts. Proto REPL also expects tries to do a refresh of code using clojure.tools.namespace on startup. The refresh code expects that there's a user/reset function. You can disable the refresh on startup in the settings to avoid this problem.
This is one of a couple changes that need to be made to improve ClojureScript support.