A very simple web application made using React that fetches weather using OpenWeatherMap API alongside few small features and a dark mode of course!
Live demo: Here
This app was bootstrapped using Create React App, you can learn more about the commands from Create React App documentation.
git clone https://github.com/nemoload/weather
cd weather
yarn # or npm i
Optain an API key from OpenWeatherMAP and in src/config.js
change OPENWEATHER_API_KEY
to your API key.
Then, to run the project:
yarn start # npm start
To build the project for deployment make sure to change the homepage
property in package.json
to suit your needs, then:
yarn build # npm run-script build
The files will be available in public
directory.
- Better location search
- Improve dark mode settings
- Pack it as a Web Extension
- Tests and documentation