rsnext/examples/with-xata
Atila Fassina 2fa33b351b
Add with-xata example (#39864)
This Pull Request adds a `with-xata` example to use [Xata](https://xata.io) as the data layer of a Next.js app.

## Documentation / Examples

- [x] Make sure the linting passes by running `pnpm lint`
- [x] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)


Co-authored-by: Balázs Orbán <18369201+balazsorban44@users.noreply.github.com>
2022-09-29 22:37:28 +00:00
..
pages Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
public Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
styles Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
utils Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
.gitignore Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
next-env.d.ts Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
package.json Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
README.md Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
schema.template.json Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00
tsconfig.json Add with-xata example (#39864) 2022-09-29 22:37:28 +00:00

Next.js + Xata

This example showcases how to use Next.js with Xata as your data layer.

With this template you get out-of-the-box:

  • API Route to connect to your Xata database
  • Type-safe Codegen
  • Accessibility-Ready
    • Dark/Light mode
    • Respects prefers-reduce-motion for CSS Transitions

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

Demo

nextjs-with-xata.vercel.app

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example cms-contentful cms-contentful-app
yarn create next-app --example cms-contentful cms-contentful-app
pnpm create next-app --example cms-contentful cms-contentful-app

💡 consider installing the Xata CLI globally, it will likely improve your experience managing your databases

npm run start:xata

⚠️ once linked, you can just run xata to re-generate types.

Start Coding

Open http://localhost:3000 to view it in the browser.

💡 the template will prompt you to create a dummy new table (nextjs_with_xata_example) with some useful resources.

Notes

Some tips that may help you develop your app.

  • The Xata VS Code Extension will make managing your data more comfortable
  • Prefer fetching data from getServerSideProps() or getStaticProps()
  • Create a Serverless Route(s) to handle data mutations

Deploy it to the cloud with Vercel (Documentation).