I used this (connected to internet, the http server example is working), but this is not. (the mcu have a working connection):
var http = require("http");
http.get("http://www.espruino.com", function(res) {
res.on('data', function(data) {
console.log(data);
});
});
HyGy