- benoit
While working on some services for a flutter application, i was thinking i could use mojo inside my own backend to extend it. So my question is howi can today include a mojo shell to excute mojo applications? tHe backend is in erlang so i am thinking to also write the glue code for it. Where should i look for it?
On Fri, Mar 18, 2016 at 1:31 AM <bche...@gmail.com> wrote:While working on some services for a flutter application, i was thinking i could use mojo inside my own backend to extend it. So my question is howi can today include a mojo shell to excute mojo applications? tHe backend is in erlang so i am thinking to also write the glue code for it. Where should i look for it?You can include your own custom Mojo services in a Flutter application without needing to include the Mojo shell. Instead, the Flutter engine itself contains a Mojo system implementation that can route messages between services.
Mojo doesn't yet support erlang, although it does support a variety of different languages. I'm not familiar with erlang, so I'm not sure how much work would be involved in adding support for erlang. If you look in https://github.com/domokit/mojo/tree/master/mojo/public you can get a sense for what's required to bind Mojo to a new language.
Adam
Adam--
You received this message because you are subscribed to the Google Groups "mojo-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mojo-dev+u...@chromium.org.
On Fri, Mar 18, 2016 at 4:38 PM Adam Barth <aba...@chromium.org> wrote:On Fri, Mar 18, 2016 at 1:31 AM <bche...@gmail.com> wrote:While working on some services for a flutter application, i was thinking i could use mojo inside my own backend to extend it. So my question is howi can today include a mojo shell to excute mojo applications? tHe backend is in erlang so i am thinking to also write the glue code for it. Where should i look for it?You can include your own custom Mojo services in a Flutter application without needing to include the Mojo shell. Instead, the Flutter engine itself contains a Mojo system implementation that can route messages between services.I know about flutter, my question was more about adding the routing support to another application, ie registering the server and application parts and set pipes between them. I am trying to find my way in the mojo repo to do it.