https://github.com/thuyencode/weather-app
Project: Weather App | The Odin Project
https://github.com/thuyencode/weather-app
theodinproject
Last synced: about 1 month ago
JSON representation
Project: Weather App | The Odin Project
- Host: GitHub
- URL: https://github.com/thuyencode/weather-app
- Owner: thuyencode
- Created: 2024-01-07T15:44:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-21T03:37:37.000Z (about 2 years ago)
- Last Synced: 2025-01-25T22:58:36.679Z (about 1 year ago)
- Topics: theodinproject
- Language: TypeScript
- Homepage: https://thuyencode.github.io/weather-app/
- Size: 977 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project: Weather App

[More detail information here](https://www.theodinproject.com/lessons/node-path-javascript-weather-app).
## Getting started
First, install all the dependencies:
```bash
npm install
# or if you're using Bun
bun install
```
To run the dev server:
```bash
npm run dev
# or if you're using Bun
bun dev
```
To export and preview the production build:
```bash
npm run build
npm run preview
# or if you're using Bun
bun run build
bun preview
```