clojure + clojurescript project structure best practices

I have a simple project setup for ClojureScript. I've been running a simple http server to test it out in the browser. I'm at the point I want to add a backend. Is this normally added in the same project file?

How do you package the assets like images, compiled ClojureScript files, and html files for the backend?


Check out various Clojurescript templates for patterns on how to organize projects. The backend is usually included in the same project, sometimes sharing parts of the code with the client/browser side. The assets are typically kept in a resources directory.

链接地址: http://www.djcxy.com/p/28586.html

上一篇: 使用JavaScript或jQuery更改Chrome标签颜色

下一篇: clojure + clojurescript项目结构最佳实践