I am able to get the events from IBM IoTF to my Node Js application. Now how do I show in html table?
appClient.on("deviceEvent", function (deviceType, deviceId, eventType, format, payload) {
var json_string = JSON.parse(payload);
console.log(json_string);
});