Writing to Meteor Using ClojureScript

Is there currently a solution for integrating ClojureScript with Meteor?

I want to create a Meteor application and between JavaScript options (JavaScript, CoffeeScript, TypeScript, LiveScript and ClojureScript). I find ClojureScript the most enjoyable. I found atmosphere / meteor packages for other JavaScript substitutions, but not ClojureScript.

thanks

+6
source share
2 answers

ClojureScript is compiled in Javascript so you can use it with Meteor. This blog explains the necessary steps to use ClojureScript with Meteor:

http://undefined.re/tag-article/6

This blog is the only resource I have found that is specific to your question, but there are more resources on how to use ClojureScript on Node.js. For example, this one shows how to create a ClojureScript application running on Node.js, and the ClojureScript wiki explains how to run ClojureScript on Node.js.

+2
source

https://github.com/samvit/meteor-clojurescript looks like something you need to learn.

wisp is not ClojureScript, but it can be easily installed via mrt add wisp . It can also be a good starting point for creating a ClojureScript package in the atmosphere.

+1
source

Source: https://habr.com/ru/post/944314/


All Articles