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

https://github.com/eser/deno-next-showcase

a project is designed to demonstrate the brand-new features of Deno 2, Next 15 and React 19
https://github.com/eser/deno-next-showcase

Last synced: over 1 year ago
JSON representation

a project is designed to demonstrate the brand-new features of Deno 2, Next 15 and React 19

Awesome Lists containing this project

README

          

# Deno 2, Next 15 and React 19 Showcase

## Getting Started

### Installing Dependencies

First, install required dependencies:

```bash
deno install
```

## Running the App

### Locally

Then, run the development server:

```bash
deno run dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

### In Docker (preferred)

```bash
docker compose up -d
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

### In Docker (old-school)

```bash
docker build -t deno-next-showcase .
docker run -it --rm -p 3000:3000 deno-next-showcase
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

## License

Apache 2.0, see [LICENSE](LICENSE) for more details.