Are there any languages targeting JavaScript (like CoffeeScript) and written in Python? I found Pyjamas, but it’s GWT of Python as I see. I want a language that doesn’t need heavy runtime library and is able to be compiled to JavaScript. I found Mascara also, and it very satisfies my requirements except it’s license. CoffeeScript is ideal for me except it’s written in CoffeeScript itself. I have to compile [CoffeeScript-like language] source codes into JavaScript statically in Python application.

link|improve this question

Phrases like "Thanks for reading my question!" are strictly prohibited on this site and someone may vote down your question just for that reason, if you include them in your question. You must not include them. – Lion Dec 18 '11 at 6:10
@Lion Oh, thanks. I removed it. – minhee Dec 18 '11 at 6:13
1  
"CoffeeScript-like" as in "it's just JavaScript"? Because that's the primary purpose of CoffeeScript: Do what JS does, just in a nicer way. Please elaborate on what defined this "non-JavaScript-language". If the sole problem with CoffeeScript is that it's not written in CoffeeScript, you can run from Python via V8. – delnan Dec 18 '11 at 7:21
@delnan I wanted to say a language do what JavaScript does in a nicer way. – minhee Dec 19 '11 at 6:09
7  
@Lion They are not "strictly prohibited" throughout the site, that is ludicrous. However, the majority of the community seems to discourage them. meta.stackoverflow.com/questions/5029/… and meta.stackoverflow.com/questions/2950/… – Derek Litz Dec 19 '11 at 7:01
show 2 more comments
feedback

3 Answers

You might want to have a look at pyjaco (python to javascript compiler).

link|improve this answer
feedback

One part of Pyjamas is pyjs, which is decribed this way in the project overview:

pyjs translates Python code to Javascript by walking the Python abstract syntax tree and generating Javascript.

Sounds like it should fit the bill: no need to use the other parts of pyjamas you don't need.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.