Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Erlang Frontend [closed]

I am building an erlang environment which is managing a single app distributed across the networks running Linux.

Any thoughts on what will be the best way to build a frontend such as in VB.Net or CSharpe for this server. I guess the main thought is if Erlang can be coupled with a GUI frontend.

Does anyone have experience building a highly interactive frontend for Erlang?

like image 681
user3166259 Avatar asked Oct 20 '22 17:10

user3166259


1 Answers

WxWidgets is one way to write a user interface with Erlang. You can integrate the GUI directly with your Erlang application without needing to communicate with an external process.

like image 82
kjw0188 Avatar answered Oct 30 '22 22:10

kjw0188