This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; | |
;; This is a collection of thoughts to help one decide between separating a clojure server/api codebase | |
;; from a clojurescript client/ui or keeping them both together. | |
;; | |
;;;; Split PROS: | |
;; "When you split code into multiple repos you can scale them independently. For example, | |
;; you could throw client code on a CDN while spinning up a lot of AWS servers for the backend. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Go to: http://bit.do/clj-mtl-meetup-2 | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;; Install a Clojure Editor | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; The two favorite editors in the Clojure community are Emacs (cider) and IntelliJ (Cursive). | |
;; However, for the sake of the experiment, we are going to use Light Table, which is really | |
;; simple to grasp. Light Table has been developed by Chris Granger, a notable Clojure developer. |