koehlma / jaspy

A Python byte code VM written entirely from scratch in JavaScript with some unique features.
582 stars 52 forks source link

Wouldn't be nicer if you contribute to existing python to js compiler projects? #3

Closed v3ss0n closed 8 years ago

v3ss0n commented 8 years ago

This seems to be re-inventing a lot of thing that many have done. Would be nice if efforts can be joined? This guy is doing good job at js vm in python : https://github.com/kovidgoyal/rapydscript-ng

Most feature complete one is https://github.com/secureosv/pythia

koehlma commented 8 years ago

I want to implement some very specific features others are not offering. These features like threading enforce a very specific architecture. To implement the same things in other Python-to-JS tools you need to rewrite most of them anyway, so I decided to write my own. But I am using modified code from the Brython project already, so I do not need to reinvent all the basic stuff.