Anything like Meteor.js for Lucee?

Hi,

would it be useful to have something like Meteor.js for Lucee?
To be reactive and have a tight Integration between frontend and backend?
Well JavaScript would not be possible on both the front- and backend.

Will be coldbox maybe head in a more “reactive” direction?

Thorsten

You could kinda roll it out with WebSockets for example, since that is
what meteor uses but it also uses a lot of other stuff.

For example, on the server side you need to tail Mongo’s oplog (to tell
you stuff, which I guess can be done with a EventHandler for example)
Then when those change happen you need to track them and send the
changes back to the client( changes not all records) so you need some
kind of client data store. MiniMongo is what Meteor uses and then the
rest is other things watching for changes

https://www.meteor.com/features

Check out the sub projects but also DDP would need to be implemented in
CFML

HTH

MD

@thorsteneilers wrote:>

Hi,
would it be useful to have something like Meteor.js for Lucee?
To be reactive and have a tight Integration between frontend and backend?
Well JavaScript would not be possible on both the front- and backend.
Will be coldbox maybe head in a more “reactive” direction?
Thorsten


See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get
your ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+unsubscribe@googlegroups.com
mailto:lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com
mailto:lucee@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/7e5b46bc-1903-47b6-a4db-cddaa1525e41%40googlegroups.com

https://groups.google.com/d/msgid/lucee/7e5b46bc-1903-47b6-a4db-cddaa1525e41%40googlegroups.com?utm_medium=email&utm_source=footer.
For more options, visit https://groups.google.com/d/optout.

Thanks Mark.Seems like a big task for a part time coder.