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
- Host: GitHub
- URL: https://github.com/eser/deno-next-showcase
- Owner: eser
- License: other
- Created: 2024-10-06T07:12:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-06T13:09:23.000Z (almost 2 years ago)
- Last Synced: 2025-04-13T08:08:21.258Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://deno-next-showcase.fly.dev/
- Size: 52.7 KB
- Stars: 26
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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.