Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lxxyx/next-13
https://github.com/lxxyx/next-13
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lxxyx/next-13
- Owner: Lxxyx
- Created: 2022-11-03T06:31:14.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-03T06:31:21.000Z (about 2 years ago)
- Last Synced: 2024-12-15T09:37:46.973Z (23 days ago)
- Language: TypeScript
- Homepage: next-13-alpha.vercel.app
- Size: 688 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Next.js App Directory Playground
Next.js introduced the `app/` directory (beta). This is the result of the [Layouts RFC](https://nextjs.org/blog/layouts-rfc) previously published for community feedback. This includes 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/` directory can coexist with the existing `pages` directory for incremental adoption. While you **don't need to use the `app/` directory** when upgrading to Next.js 13, we're laying the foundations to build complex interfaces while shipping less JavaScript.
## Running Locally
1. Install dependencies: `yarn`
1. Start the dev server: `yarn dev`## Documentation
https://beta.nextjs.org/docs
## Leave Feedback
https://github.com/vercel/next.js/discussions/41745