https://github.com/rishi-raj-jain/app-playground-edgio-v7
https://github.com/rishi-raj-jain/app-playground-edgio-v7
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rishi-raj-jain/app-playground-edgio-v7
- Owner: rishi-raj-jain
- Created: 2023-05-25T10:13:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T10:13:53.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T13:37:17.412Z (7 months ago)
- Language: TypeScript
- Size: 959 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Next.js App Router Playground
Next.js recently introduced the App Router with support for:
- **Layouts:** Easily share UI while preserving state and avoiding re-renders.
- **Server Components:** Making server-first the default for the most dynamic applications.
- **Streaming:** Display instant loading states and stream in updates.
- **Suspense for Data Fetching:** `async`/`await` support and the `use` hook for component-level fetching.The App Router can coexist with the existing `pages` directory for incremental adoption. While you **don't need to use the App Router** when upgrading to Next.js 13, we're laying the foundations to build complex interfaces while shipping less JavaScript.
## Running Locally
1. Install dependencies:
```sh
pnpm install
```2. Start the dev server:
```sh
pnpm dev
```## Documentation
https://nextjs.org/docs
## Leave Feedback
https://github.com/vercel/next.js/discussions/41745