Picon
Gravatar

Re: A simple (and naive) online whiteboard using Aleph & ClojureScript

Maybe you can create an online demo site?

On Sun, Apr 1, 2012 at 7:13 AM, Nicolas Buduroi <nbuduroi <at> gmail.com> wrote:
Hi everyone, I've been experimenting with ClojureScript and Aleph lately and made this sample application. It's a naive implementation of an online whiteboard. It's under a hundred line of code so it's a quick read:

https://github.com/budu/board

The Clojure web development story is getting better and better everyday, bit thanks to everyone involved!

--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure <at> googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+unsubscribe <at> googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en



--
GuruDigger- We help internet products find technical partners who share the same dream!

- http://gurudigger.com

--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure <at> googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+unsubscribe <at> googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
Nicolas Buduroi | 1 Apr 2012 02:07
Picon
Gravatar

Re: A simple (and naive) online whiteboard using Aleph & ClojureScript

On Saturday, March 31, 2012 7:35:03 PM UTC-4, jun lin wrote:

Maybe you can create an online demo site?
 
Yes good idea, I'll try to get it running on Heroku tomorrow.

--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure <at> googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+unsubscribe <at> googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
zoka | 1 Apr 2012 08:22
Picon

Re: A simple (and naive) online whiteboard using Aleph & ClojureScript

Unfortunately  I do not think that Heroku supports Websockets, just
HTTP. When your web application is started as Heroku dyno, its
webserver (either Aleph or Jetty) starts on a randomly
assigned port and then Heroku  routing infrastructure presents it to
the world as yourapp.herokuapp.com:80. The routing infrastructure at
this stage does not support Websockets, so you app is unreachable by
Websocket cllients.

There is work being done on NGINX module  to address this see:
http://www.letseehere.com/reverse-proxy-web-sockets
https://github.com/yaoweibin/nginx_tcp_proxy_module

Zoka

On Apr 1, 10:07 am, Nicolas Buduroi <nbudu... <at> gmail.com> wrote:
> On Saturday, March 31, 2012 7:35:03 PM UTC-4, jun lin wrote:
>
> > Maybe you can create an online demo site?
>
> Yes good idea, I'll try to get it running on Heroku tomorrow.

--

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure <at> googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+unsubscribe <at> googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


Gmane