This app is targeted at understanding how easy it is to execute your own FlowStream and get a response. This predefined FlowStream transforms only strings to uppercase.
How to run it?
$ cd flowstreamexec
$ npm install
$ npm start- open web browser
http:/127.0.0.1:8000 - you will see that the FlowStream processed a default data
- try to add your phrase via
http:/127.0.0.1:8000?data=my_test
Drag and drop the file /flowstream/database.json to https://floweditor.totaljs.com.
FlowStream must contain the Exec component, and this component initializes a message that you generate manually in the code. The Exec component returns message data only if the generated message ends, so therefore we used the End component to complete the FlowStream process.