I'd suggest:
var json; try { json = JSON.parse(data); } catch (e) {} if (json && "Hostname" in json) { ... } else { // no data }
@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.
I'd suggest: