Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Writing in Meteor using ClojureScript

Is there currently a solution for integrating ClojureScript with Meteor?

I want to build a Meteor application and between the flavors of JavaScript (JavaScript, CoffeeScript, TypeScript, LiveScript and ClojureScript) I find ClojureScript the nicest. I have found atmosphere/meteorite packages for the other JavaScript substitues but no ClojureScript.

Thanks

like image 967
GTDev Avatar asked May 05 '13 14:05

GTDev


2 Answers

ClojureScript compiles to Javascript so you can use it with Meteor. This blog post explains the necessary steps to use ClojureScript with Meteor:

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

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

like image 120
Rodrigo Taboada Avatar answered Sep 17 '22 15:09

Rodrigo Taboada


https://github.com/samvit/meteor-clojurescript looks like something to look into.

wisp is not ClojureScript but it can be easily installed through mrt add wisp. Could also be a good starting point to make a ClojureScript package in Atmosphere.

like image 38
kqw Avatar answered Sep 20 '22 15:09

kqw