How to call a go program from a web page

Is there any documentation relating specifically to the interface between HTML/Javascript and go programs? In particular, I want to initiate a go program from a web page as a result of a submit. I can do this with a listener program, but that requires the go program to be running already.

The interface between an HTML page and a server is called HTTP, it requires an HTTP server to be running.

2 Likes

Start here: https://gowebexamples.com/

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.