• I've tried the Emulator and tried a simple http request.
    I've checked this (http://www.espruino.com/Internet) site and the following code:

    var http = require("http");
    http.get("http://www.espruino.com", function(res) {
      res.on('data', function(data) {
        console.log(data);
      });
    });
    

    But the emulator throws an error: Module http not found.

    Does Bangle.js support http get requests?

    I also had the same error message when i've tried WebSocket. Then it's complaining about missing module "http" and "net".

    What am I doing wrong?
    Does actually Bangle.js support making simple http requests?
    What about WebSocket connections?

    Best regards and thanks for any kind of help in advance.
    ArthurT

About

Avatar for ArthurTent @ArthurTent started