This is a simple Node/Express app that uses the OpenWeatherMap API to access the current weather information for a given zip code and save it with a journal entry about the user's feelings. The entry is ephemeral--it will only display until you add a new entry or refresh the page!
Technologies: Node, Express, JavaScript, HTML, CSS, OpenWeatherMap API
-
Clone the repo and
cd weather-journal
-
Run
npm install
to install the node modules -
Sign up for an OpenWeather account and get an API key
-
Add a file
/client/config.js
and add your API key in a config object:const config = { OPEN_WEATHER_KEY: '123yourapikey456', };
-
Run
npm start
to start the server -
Open the browser to http://localhost:3000 and try it out!