Simple weather app using OpenWeather API and skeleton UI for sveltekit
Create an account here: OpenWeather
Store your api key in a .env file in the project root as WEATHER_API_KEY=
#.env
WEATHER_API_KEY=YOUR_API_KEY_GOES_HERE
Once you've stored your API key and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open