- Introduction
- Requirements
- Technologies
- Installation
- Illustration
- API
- Functionality
- Project status
- Improvement
- Contribute
- Author
I was tired of going out and seeing what the weather was like outside. Tired of using the google weather application. This simple weather application will only display the current weather for a given area.
Also, I always wanted to know how a REST API consumption works.
While learning NodeJS, I wanted to do something simple and fast. This project, is a web application allowing me to display the weather, temperature or humidity, wind, 1 week forecast...
extension chrome : JSON Viewer
- Node.JS ^16.0.0
- Javascript
- CSS
- Framework CSS (tailwindcss)
Repository update : 11/06/2022
- On Github, go to the main page of the project
- Open a terminal, or git bash
- Replace the current working directory with the location where you want to clone it.
- Type
git clone https://github.com/cryptotopstar/Weather-App.git
press on Entry
- Enter the project, then go to a terminal
- Once the installation is complete, type npm -i in the terminal. Install the dependencies in the local node_modules folder.
- Type : npm start in the terminal
- result terminal :
[nodemon] 2.0.16
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node server.js`
listening http://localhost:3000
- Open your browser: type http://localhost:3000
create an .env at the root of the project.
Don't forget to create an account on OpenWeather and MapBox
The Documentation folder
, contains all the information needed to create an account, but also where the keys for the
.env file
are
APIKEY='INSERT_KEY'
APIMAPBOX='INSERT_KEY_MAPBOX'
API is an acronym for Applications Programming Interface. An API is therefore a programming interface that allows you to "plug in" to an application to exchange data. It operates on an input/output agreement, it is a distribution channel. A API is open and offered by the program owner. It is a concept and an intangible element.
- OpenWeather :
- Call current weather data for one location
api.openweathermap.org/data/2.5/weather?q={city name}&appid={API key}
- 5 Day / 3 Hour Forecast api.openweathermap.org/data/2.5/forecast?q={city name}&appid={API key}
- 7 days
https://api.openweathermap.org/data/2.5/onecall?lat={lat}&lon={lon}&exclude={part}&appid={API key}
- Mapbox :
https://api.mapbox.com/geocoding/v5
- Today : http://localhost:3000/
- Week : http://localhost:3000/sevendays
- temperature of the week
- Phase Moon
- The user enters the name of the town or city.
- The application returns the information from the api via the name of the city.
- Weather visualization
✔️ - the application works correctly
- visualize the temperature with a graph (chartjs) ✔️
- Change design to application
in progress
- add more weather features ✔️
- chart precipitation
in progress
- converter Celcius to Fahrenheit
- high and low tide ✔️
- lunar phase ✔️ // 04/04/21
It's hard. It's always hard the first time you do something. Especially when you are collaborating, making mistakes isn't a comfortable thing. We wanted to simplify the way new open-source contributors learn & contribute for the first time.
Reading articles & watching tutorials can help, but what's better than actually doing the stuff in a practice environment? This project aims at providing guidance & simplifying the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below.
Duplessi Geoffrey