-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Natal only reloads core namespace #46
Comments
FWIW, it is modeled after this blog post which exhibits that limitation. http://blog.fikesfarm.com/posts/2015-05-30-poor-mans-figwheel-for-ambly.html |
OK, thanks. At this point I'm not sure about the best approach for developing a multi-namespace app w/ Natal + Ambly. Since Cmd-R reloads the JavaScript it seems my only option at the moment is to re-launch the app on every change (which is far too slow to be effective). I'll need to explore Ambly further to better understand what's possible in terms of reloading. Any advice/pointers you have would be great. |
You can always use the REPL and issue a |
Interestingly, I tried a simple experiment where the main namespace simply delegates to another namespace to get, say, a UI string to put in the button in the sample app that gets automatically generated. If I then do |
@mfikes Yeah, I'm experiencing the same issue. I'm also having trouble getting the Ambly REPL working through Emacs. Works great in a terminal but I have to manually evaluate After running (require
'[cljs.repl :as repl]
'[ambly.core :as ambly])
(repl/repl (ambly/repl-env)) Which successfully starts the CLJS REPL. Trying to evaluate any expressions after that just hangs. |
See the |
@scttnlsn For |
@mfikes Thanks, working well in Emacs using Piggieback. Still need to reload both the changed namespace and |
doesnt address the core namespace issue, but heres the setup i have to trigger a reload on save from an cider piggiebacked repl |
Is this by design? Ideally I'd like to be able to make a change in any namespace and have it hot reloaded in my simulator. Is that possible?
The text was updated successfully, but these errors were encountered: