REST client for Electron

Hello,
I’d like to use the Electron with a REST server, but I’m not sure where to start. I couldn’t find a somewhat vetted client out there. Does anyone know of one?

Alternatively, I’m trying to “go to a URL” like this:

http://192.168.1.7:8080/CMD?temperature=67.5

So, if I just entered a URL on my browser, this updates the “temperature” variable. But how can this be done on the Electron?

You first need to get the public IP address that you are running the server software on a test to see if it works with: http://public-ip-address:8080/CMD?temperature=67.5

Once that is working, you can use something like https://docs.particle.io/guide/tools-and-features/webhooks/ to send information to your REST server