I'm looking for easier/ faster ways to build client side web apps and was told that I should look into Clojurescript.
Can you use Clojurescript to script javascript to run in a web browser? Is there some benefits to scripting in clojurescript than regular javascript?
What's the differences between Clojurescript and Typescript/ Coffeescript in relation to faster/ easier development?
-
1In my opinion TypeScript won : medium.com/@basarat/typescript-won-a4e0dfde4b08#.8mzp5939q πΉbasarat– basarat2016εΉ΄07ζ13ζ₯ 03:29:24 +00:00Commented Jul 13, 2016 at 3:29
1 Answer 1
Yes you can. Clojurescript is a functional language that (because of its immutable data structures) is well suited to working with Facebook's React. There are a variety of React-based frameworks/libraries to choose from, and an active community to help you.
One of the advantages is that you get 'live coding' - this means that all you need to do is save your code and it will be automatically compiled and running in your browser. See Figwheel for this.
Also your production code will be only be as large as it needs to be due to the use of Google Closure's Dead Code Elimination.
Comments
Explore related questions
See similar questions with these tags.