Simple application to show the weather of different locations. Local time is shown, and you can see the temperature in Fahrenheit if you click on the temperature degree.
The app implements OpenWeatherAPI, to get your own API key, go to: https://openweathermap.org
Create file env.js
under "scripts" folder.
define([], function(){
return {
api_key: <your_api_key>
};
});
Open the index.html
file, and the app will start running in a the browser.