Standalone Server (Console Application)
This new option is introduced in uniGUI build 1608.
It will create standalone applications which are similar to Standalone Servers. The only difference is that they are created as Windows console applications. uniGUI standalone console applications are intended to be deployed as HyperServer Nodes. Our research has shown that deploying HyperServer Nodes as console applications can significantly improve scalability of HyperServer clusters, especially when many Nodes run under the same HyperServer instance. If you plan to deploy your uniGUI application as part of a HyperServer cluster, we recommend creating your Node app as a console application.
Normally, any console application will show a console window. This window will be hidden by the uniGUI server runtime code. To keep this window visible there is a property named HideConsoleWindow in ServerModule. This option is True by default, which means the console window will be hidden. Setting this property to False will keep the console window visible and will also redirect uniGUI server logs to this window. This can be useful for debugging.
You can track application exceptions and error messages or use ServerModule's integrated logger to print custom log entries for debugging purposes.

Related information: Compiling Nodes as Console Applications (https://unigui.com/doc/online_help/compiling-nodes-as-console-app.htm)