in reply to Re: Developing like Google's applications
in thread Developing like Google's applications

There is the Sajax toolkit, which has a (not really perlish) Perl port. I am using it to write a collaborative (text/code) editor that runs in the browser. The prototype lives at http://zaphod.datenzoo.de, but it is very rough at the edges. As soon as I get the code into a releasable state, I'll post more of the code.

The problem with JavaScript RPC is that you have to be more or less fluent in both, Perl and JavaScript to get the tight interaction correct, at least until you have stabilized on an API.

  • Comment on Re^2: Developing like Google's applications

Replies are listed 'Best First'.
Re^3: Developing like Google's applications
by stevecomrie (Beadle) on Mar 13, 2005 at 20:46 UTC
    I didn't like the SAJAX toolkit too much, so I rolled all the javascript out of the Perl code and replaced it with a .js file.

    Then I turned the perl script into a CGI::Application module and have the result running here:

    http://www.unobserved.org/misc/rs/

    Code available for download.

      I just started looking at Sajax, but love your simplification, so I'll use it instead. Thanks very much