msgflo
                                
                                
                                
                                    msgflo copied to clipboard
                            
                            
                            
                        Distributed Flow-Based Programming via message queues
For instance so that IoT devices can mark all the participant hosted on one device to be in a group. This grouping can then be provided in the live graph...
This is needed for user+password authentication to be secure, as they are otherwise in plaintext. This limits usage to secure private networks or completely public unauthenticated. Even in a (supposedly)...
Similarly to the `msgflo-procfile` tool we have for generating Heroku Procfiles from a graph, we should have a tool to generate/update a `docker-compose.yml` file. Format reference https://docs.docker.com/compose/compose-file/#/command # Requirements Since...
We should be able to generate [.service](http://www.freedesktop.org/software/systemd/man/systemd.service.html) unit files for systemd, that can start MsgFlo participant(s). Similar to to how we can generate `Procfile` using [msgflo-procfile](https://github.com/msgflo/msgflo/blob/master/src/procfile.coffee) for starting participants on...
Primarly case is JSON schemas. The schema to use should be declared on the ports (ex: `type: 'object', datatype: 'http://schemas.myservice/foo.json'`) and then the Participant should enforce this schema. The information...
For quick & dirty work, for instance when prototyping, it can be very useful to have a MsgFlo participant based on shell scripts, and mostly calling existing programs. This can...
`web` is special in Heroku, it is the HTTP frontend which a service must have. The procfile generation should fail if this is not present, as such a service will...
Right now anyone who can find the address/port of the service can connect. Which is obviously unsafe, especially once supporting adding components, as these may execute arbitrary code. When access...
Ref https://github.com/flowbased/fbp-protocol/issues/22
noflo-runtime-msgflo now send/receives some FBP protocol messages (`trace:start` and `trace:dump`). But hopefully soon it will provide the whole protocol (noflo/noflo-runtime-msgflo#30). If these were relayed via the MsgFlo coordinator and over...