Simple todo list using node, request, express, and ejs.
- Uses ipStack & DarkSky apis to get your location, temperature, and weather details.
- Displays current day & date.
- Displays an image based off your current weather.
Requires an ipStack & DarkSky API KEY.
Sign up here:
https://ipstack.com/documentation
https://darksky.net/dev
Create a config.js file in the main directory.
let ipKey = "your ipStack key";
let apiKey = "your DarkSky key";
exports.ipKey = ipKey;
exports.key = apiKey;