jmtellez / CLI-mate

Node CLI app that gives you the weather forecast for a given city.
6 stars 10 forks source link

Error when API keys are not set #20

Closed arpitvaghela closed 3 years ago

arpitvaghela commented 3 years ago

Following Error is thrown if API keys are not set in the environment variables errifnoapikey

This can be solved by checking if process.env.WEATHERSTACK and process.env.MAPBOX exists

arpitvaghela commented 3 years ago

Adding check

if(!process.env.WEATHERSTACK || !process.env.MAPBOX){
    spinner.fail("Failed to get API keys");
arpitvaghela commented 3 years ago

Similar error is seen when API keys are invalid