WeScheme (web IDE)
wescheme.org
WeScheme (web IDE)
1–10 of 27 posts
Re: WeScheme (web IDE)
#2 (js-big-bang 0 ;; initial world
(on-draw ;; the dom tree renderer
(lambda (w)
(list (js-p '(("id" "myPara")))
(list (js-text "hello world"))))
;; the css renderer
(lambda (w)
'(("myPara" ("font-size" "30"))))))Re: WeScheme (web IDE)
#3Re: WeScheme (web IDE)
#4http://steve-yegge.blogspot.com/2008/04/xemacs-is-dead-long-...
Re: WeScheme (web IDE)
#5This lets me do scheme->js in the browser using moby, which is implemented in racket. So my code gets converted to js on the server hosting this site. Does this mean I can (require ...) other racket libraries as well?
Bookmarked for later.
Re: WeScheme (web IDE)
#6Re: WeScheme (web IDE)
#7Truthfully, I don't know that it's going to kill conventional editor or editing habits (and by the time it does, I suspect that web-based IDEs will look significantly less like today's web-apps than they do today) and more that this technology will find a niche in code review, or version control interfaces, or something like that, but it's a nifty idea.
Re: WeScheme (web IDE)
#8Re: WeScheme (web IDE)
#9I haven't had a chance to look at this properly yet but maybe somebody can clarify a few things. This lets me do scheme->js in the browser using moby, which is implemented in racket. So my code gets converted to js on the server hosting this site. Does this mean I can (require ...) other racket libraries as well? Bookmarked for later.
moby documentation: http://planet.racket-lang.org/package-source/dyoo/moby.plt/3...
World: http://world.cs.brown.edu/1/htdw-v1.pdf
I'm playing now. Will post some code when I have it working.
Re: WeScheme (web IDE)
#10How is this different than http://cloud9ide.com/ ? Cloud9 seems to be much more mature and feature rich as well.