ok so you should start with this request:
var url = 'http://my.wetteralarm.ch/v6/alarms/meteo/with-regions.json'
request({
url: url,
method: 'GET'
}, function (error, response, body) {
console.log(body);
var result = JSON.parse(body);
console.log(result);
});
now you can explore the data that you will get with this request. you will see that the json file you get differs from the one you get from the ‘Deutscher Wetterdienst’-site. If you just change the request the module tries to handle the data as if it was structured like the one from DWD. So you have to write your own logic to extract the information your interested in from the json file.
if you’ve done that you can think about how you will display this data.