Dmitri Sotnikov

Results 647 comments of Dmitri Sotnikov

I think we should, could start a new branch for it and port the blog examples over.

I probably won't have a chance to look in the near future, so if you want to take a stab at it that would be great. :)

Using `node_modules` as the default with `package.json` seems like it would provide the most convenience for packaging and distributing things. @thheller I think that having a reserved directory like `node_modules/cljs`...

Yeah, I think there's a huge value in making ClojureScript ecosystem seamlessly accessible to JavaScript developers using tools they're already familiar with.

I actually think there is a lot of value pushing source to `npm` because then it becomes available to people using NPM. I've seen lots of people avoid ClojureScript because...

It might be an interesting idea to have a pluggable backend API in Reagent. If there was a protocol, then it could be implemented by any implementation that provides a...

Yeah, I see how this can get tricky. Just tracing how defstates depend on one another based on the namespace graph would be helpful I think. That way you can...

Oh what I was thinking is that you can track the order namespaces with `defstate` require each other and then write that out: ``` clojure (ns app.http-server) (ns app.db) (ns...

err updated mine to use a map :)

I would infer that from `app.http-server` requiring `app.db`, but it's possible that there could be intermediate namespaces there in the chain. So it might need a bit more cleverness than...