Difference Between Nanoflow or Microflow

0
Hello everyone ! can u please tell me the Difference Between Nanoflow or Microflow ?
asked
2 answers
1

Microflows and nanoflows allow you to express the logic of your application. Nanoflow can be used in offline apps. Microflow use Java lib whethers nanoflow use JavaScript. You can visit this link for further details: https://docs.mendix.com/refguide/microflows-and-nanoflows

answered
1

The short answer is that Microflows run on the server, and Nanoflows run on the client. 

Microflows compile down to Java so can integrate with 3rd party Java libraries and Java Actions. They can also be used to carry out background tasks.

Nanoflows compile to JavaScript and run directly in a browser. This means they can be used in offline apps and don’t need to talk to the server. Nanoflows can also interact with JavaScript Actions.



 

answered