Maybe you can try using the Remote debugging to allow your Bangle to stay connected to Gadgetbridge while you run code: https://www.espruino.com/Gadgetbridge#remote-debugging
Then you can see if there are any error messages when you run the command. There is an example at https://www.espruino.com/Gadgetbridge#http-requests
Bangle.http("https://pur3.co.uk/hello.txt").then(data=>{ console.log("Got ",data); });
Note that you have to use HTTPS, not just HTTP because of Android.
If you want to find other apps, literally just go to the GitHub Bangle.js repo and search for Bangle.http: https://github.com/search?q=repo%3Aespruino%2FBangleApps%20Bangle.http&type=code
Bangle.http
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Maybe you can try using the Remote debugging to allow your Bangle to stay connected to Gadgetbridge while you run code: https://www.espruino.com/Gadgetbridge#remote-debugging
Then you can see if there are any error messages when you run the command. There is an example at https://www.espruino.com/Gadgetbridge#http-requests
Note that you have to use HTTPS, not just HTTP because of Android.
If you want to find other apps, literally just go to the GitHub Bangle.js repo and search for
Bangle.http
: https://github.com/search?q=repo%3Aespruino%2FBangleApps%20Bangle.http&type=code