Echo JS 0.11.0

<~>

tracker1 comments

tracker1 1414 days ago. link 1 point
Looks cool... At this point, would probably be more interested in something similar written against Deno, considering the in the box tooling around TypeScript which includes JSX transforms and a potentially smaller developer footprint.
tracker1 1414 days ago. link 2 points
Very cool... kind of wish there were more comments/documentation on the JS file itself.
tracker1 1419 days ago. link 1 point
I feel like Java is a step backwards in a lot of ways on this.

Thinking of playing with web-view[1] and Deno to see if I can get them co-mingled somehow... Then creating some sort of transparent host/communication layer between UI and backend. Then get something that can be compiled to a single platform executable... Linux deps get interesting, so a good story for flatpack/flathub, appimage and snap would be a followup.  No ideas yet on iOS or Android.

1. https://github.com/Boscop/web-view
tracker1 1420 days ago. link 1 point
Really like the date picker... only critique would be the usability on mobile.  Reminds my of the MS Ajax Toolkit date picker, which is the only thing in that toolkit I really liked.  The month/year navigation is perfect imo.
tracker1 1420 days ago. link 1 point
Nice progress on this... would suggest more testing for phone/mobile usage, especially in the dialogs/overlays, etc.
tracker1 1424 days ago. link 1 point
Would be cool to have a webrtc version for two players using a mouse wheel as the control device.
tracker1 1424 days ago. link 1 point
NOTE: you may or may not have issues doing this outside of an event handler for a click event.
tracker1 1424 days ago. link 1 point
Okay... a few things are being conflated here... A websocket connection is a stream connection to a server... that's it.

From there, you can use different queuing patterns for relaying messages to other connected users, but that process will widely vary.  While this does discuss the different patterns for communication, there's several missing and others that are not spelled out that well.

While Off-topic better examples can be found in the 0mq introduction and documentation, or for that matter RabbitMQ.  Lately I've found that most of these patters are better implemented behind Redis with filters against connected sockets for relay managed by the application if needed.

YMMV.
[more]