An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Project: Weather App

![An image of Weather App](https://i.ibb.co/VDVbHgN/thuyencode-github-io-2024-01-20-22-35-58.png)

[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
```