# Guides (/docs/guides)

> For the complete Prisma documentation index, see [llms.txt](https://www.prisma.io/docs/llms.txt). A markdown version of any docs page is available by appending `.md` to its URL.

A collection of guides for various tasks and workflows

Location: Guides

Welcome to the Guides section! Here you'll find practical, step-by-step guides to help you accomplish specific tasks with Prisma products, including Prisma ORM, Prisma Accelerate, Prisma Postgres, and more.

## Quick start [#quick-start]

Scaffold a new project with Prisma ORM and Prisma Postgres already set up:

  

#### bun

```bash
bunx create-prisma@stable
```

#### pnpm

```bash
pnpm create prisma@stable
```

#### yarn

```bash
yarn create prisma@stable
```

#### npm

```bash
npm create prisma@stable
```

Pick your framework and options from the prompts. To skip prompts use `--yes`, to set a framework upfront use `--template` (`next`, `hono`, `svelte`, `astro`, `nuxt`, `tanstack-start`, `nest`, `elysia`, `turborepo`).

## Getting started [#getting-started]

* [Next.js](https://www.prisma.io/docs/guides/frameworks/nextjs) - Learn how to use Prisma ORM in a Next.js app and deploy it to Vercel
* [Hono](https://www.prisma.io/docs/guides/frameworks/hono) - Learn how to use Prisma ORM in a Hono app
* [SvelteKit](https://www.prisma.io/docs/guides/frameworks/sveltekit) - Learn how to use Prisma ORM in a SvelteKit app

## Related pages

- [`Build faster with Prisma + AI`](https://www.prisma.io/docs/ai): Build faster with Prisma and AI coding tools like Cursor, Codex, and ChatGPT
- [`Console`](https://www.prisma.io/docs/console): Learn how to use the Console to manage and integrate Prisma products into your application.
- [`Deploy the full Prisma stack`](https://www.prisma.io/docs/full-stack-tutorial): A single tutorial from empty directory to live URL, with Prisma 8, Prisma Postgres, and Prisma Compute.
- [`Introduction to Prisma 8`](https://www.prisma.io/docs/v8): Prisma 8 is the next major version of Prisma ORM, available as a Release Candidate.
- [`Local development`](https://www.prisma.io/docs/local-development): Run the whole Prisma stack on your machine, with your app on Bun, a local Prisma Postgres database, and local object storage.