@strawberry-3-141 You are absolutly right, I made a bad example. The real html code is a little bit more complicated, so I mixed the real code with this example.
@ianperrin My input html is more complicated, but thanks for your answer, good to know!
@Plati It helped me a lot to look at other modules. You should use a node_helper.js, there you can create a function which gets the html code of the website.
//function which gets the data from the given URL
getTheData: function(theURLtoCatch) {
var options = {url: theURLtoCatch};
request(options, (error, response, body) => {
if (response.statusCode === 200) {
this.sendSocketNotification("DATA", this.parseHTML(body));
} else {
console.log("Error getting Data " + response.statusCode);
this.sendSocketNotification("ERROR", response.statusCode);
}
});
},
parseHTML: function(dataBody) {
//use something like ianperrin and strawberry showed in his example
}