Live data from Hacker News

Brython - Python to Javascript translator

brython.info

1–10 of 71 posts

Re: Brython - Python to Javascript translator

#5
Repl.it has supported python on the browser for a while: http://repl.it/ (an an interpreter, not as a translator, though).

It also supports ruby, scheme, lua and others[1]

What made it impractical was the slowness. Emscripten seems to work fine for clang[2], not so much for interpreted languages. Maybe the translator path can solve this issue.

[1] http://repl.it/#:languages

[2] https://developer.mozilla.org/en-US/demos/detail/bananabread

Re: Brython - Python to Javascript translator

#8
post #2

I think compiler is the wrong way to describe this. A computer program that translates between two different high level languages is typically called a language translator .

Not anymore, see Closure Compiler, CoffeeScript compiler, TypeScript compiler, dart2js compiler, and tons more: https://github.com/jashkenas/coffee-script/wiki/List-of-lang...

It's pretty common now to call these "compilers".

Post reply on HN