1

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?

1

1 Answer 1

3

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.