You are reading a single comment by @alexander-daniel and its replies. Click here to read the full conversation.
  • Another question:

    Is it possible to stream using the espruino?

    e.g

    var go = function() {
    
        var req = http.request(options, function(res) {
            console.log(res);
        });
    
        var x = 0;
        setInterval(function() {
            console.log(x);
            data = {"x": x, "y": 1};
            x++;
            json = JSON.stringify(data);
            req.write(json+'\n');
        },100);
    };
    

    Does the espruino support TCP?

About