Re: IoT: Clojurescript -> Jerryscript?

2016-07-28 Thread Andrey Antukh
Seems like that jerryscript does not fully implement the ecmascript (3 and/or 5). I have tried to run a pretty complex test suite ( https://github.com/funcool/cats tests) under it (that already includes async code with promises and core.async among other stuff) and the code never executes

Re: IoT: Clojurescript -> Jerryscript?

2016-05-31 Thread Paul deGrandis
Hi Gregg, I've previously used ClojureScript to target other JavaScript engines (on small devices and on Android), without any issue. You shouldn't need to do anything special, but if something comes up and you hit a snag, just post here. Good luck and have fun! Cheers, Paul -- You

Re: IoT: Clojurescript -> Jerryscript?

2016-05-31 Thread Gregg Reynolds
Hi Christopher, Thanks for the feedback. If things go approximately as planned I'll be hacking at this over the next few weeks. You'll be hearing g from me. thanks! gregg On May 27, 2016 5:15 PM, "Christopher Small" wrote: > I imagine this should be possible, as long

Re: IoT: Clojurescript -> Jerryscript?

2016-05-27 Thread Christopher Small
I imagine this should be possible, as long as JerryScript isn't missing any features needed by the js code the cljs compiles to. I'd bet most code would be fine, as long as it doesn't depend on OS features. So I would Just Try It with a simple hello world app and see how complicated you can get

IoT: Clojurescript -> Jerryscript?

2016-05-27 Thread Gregg Reynolds
Hi folks, I just came across http://samsung.github.io/jerryscript/ , which Samsung apparently open-sourced last fall. Jerryscript is a bit of a misnomer, its not a language but a JS engine designed for IoT devices. Sorta like node.js only smaller, I guess. Seems to run on Zephyr on Arduino101