Check the online demo: Weather App
A weather application built with Next.js that returns the temperature and weather condition of a particular city using accuweather api.
- Type the city you wish to see the weather information
- Search by clicking the search (🔎) icon or pressing enter
- Wait for the api response
- Done! 😁 The weather information will be displayed on screen
$ git clone https://github.com/DaviLhlapakRosa/weather-app.git
$ cd weather-app
$ yarn
or
$ npm install
$ yarn dev
or
$ npm run dev
Scripts:
dev
Runs next dev which starts Next.js in development mode
build
Runs next build which builds the application for production usage
start
Runs next start which starts a Next.js production server
type-check
Runs TypeScript's tsc CLI in noEmit
mode to run type-checking separately.