Skip to content

akpatel363/weather-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Weather App

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.

Note

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
}