It's a weather app made using nodejs and it is deployed on Heroku.
It uses API's provided by LocationIQ.com and Darksky.net get the coordinates of the location provided and then to get the weather details respectively.
If you want to run this project locally on your machine. You must add env.js file in src folder with your API keys.
let locationIQ_API_Key = "YOUR_API_KEY"
let darksky_API_Key = 'YOUR_API_KEY'
module.exports = {
locationIQ_API_Key,
darksky_API_Key
}