Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/100-getting-started/01-quickstart-sqlite.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cd hello-prisma
Next, initialize a TypeScript project using npm:

```terminal
npm init -y
npm init --init-type=module -y
npm install typescript tsx @types/node --save-dev
```

Expand All @@ -49,7 +49,7 @@ See [installation instructions](/orm/tools/prisma-cli#installation) to learn how
Now, initialize TypeScript:

```terminal
npx tsc --init
npx tsc --init --types=node
```

Then, install the Prisma CLI as a development dependency in the project:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cd hello-prisma
Next, initialize a Node.js project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma --save-dev
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cd hello-prisma
Next, initialize a Node.js project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma --save-dev
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This tutorial will also assume that you can push to the `main` branch of your da
Next, initialize a Node.js project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma --save-dev
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cd hello-prisma
Next, initialize a Node.js project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma --save-dev
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ cd hello-prisma
Next, initialize a Node.js project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma --save-dev
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cd hello-prisma
Next, initialize a TypeScript project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma typescript tsx @types/node --save-dev
```

Expand All @@ -50,7 +50,7 @@ This creates a `package.json` with an initial setup for your TypeScript app.
Next, initialize TypeScript:

```terminal copy
npx tsc --init
npx tsc --init --types=node
```

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cd hello-prisma
Next, initialize a TypeScript project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma typescript tsx @types/node --save-dev
```

Expand All @@ -50,7 +50,7 @@ This creates a `package.json` with an initial setup for your TypeScript app.
Next, initialize TypeScript:

```terminal copy
npx tsc --init
npx tsc --init --types=node
```

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ cd hello-prisma
Next, initialize a TypeScript project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma typescript tsx @types/node --save-dev
```

Expand All @@ -56,7 +56,7 @@ This creates a `package.json` with an initial setup for your TypeScript app.
Next, initialize TypeScript:

```terminal copy
npx tsc --init
npx tsc --init --types=node
```

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ cd hello-prisma
Next, initialize a TypeScript project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma typescript tsx @types/node --save-dev
```

Expand All @@ -45,7 +45,7 @@ This creates a `package.json` with an initial setup for your TypeScript app.
Next, initialize TypeScript:

```terminal copy
npx tsc --init
npx tsc --init --types=node
```

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ cd hello-prisma
Next, initialize a TypeScript project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma typescript tsx @types/node --save-dev
```

Expand All @@ -46,7 +46,7 @@ This creates a `package.json` with an initial setup for your TypeScript app.
Next, initialize TypeScript:

```terminal copy
npx tsc --init
npx tsc --init --types=node
```

You can now invoke the Prisma CLI by prefixing it with `npx`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ cd hello-prisma
Next, initialize a TypeScript project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma typescript tsx @types/node --save-dev
```

Expand All @@ -52,7 +52,7 @@ This creates a `package.json` with an initial setup for your TypeScript app.
Next, initialize TypeScript:

```terminal copy
npx tsc --init
npx tsc --init --types=node
```

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ cd hello-prisma
Next, initialize a Node.js project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma --save-dev
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cd hello-prisma
Next, initialize a TypeScript project and add the Prisma CLI as a development dependency to it:

```terminal copy
npm init -y
npm init --init-type=module -y
npm install prisma typescript tsx @types/node --save-dev
```

Expand All @@ -51,7 +51,7 @@ This creates a `package.json` with an initial setup for your TypeScript app.
Next, initialize TypeScript:

```terminal copy
npx tsc --init
npx tsc --init --types=node
```

import PrismaInitPartial from './_prisma-init-partial.mdx'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Now that you have a MongoDB database, the next step is to create a new project a
```terminal copy
mkdir blog
cd blog
npm init -y
npm init --init-type=module -y
npm install -D prisma
npx prisma init --datasource-provider mongodb --output ../generated/prisma
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Now that you have a MongoDB database, the next step is to create a new project a
```terminal copy
mkdir blog
cd blog
npm init -y
npm init --init-type=module -y
npm install -D prisma
npx prisma init --datasource-provider mongodb --output ../generated/prisma
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Now that your project is in the correct location, continue with the setup.
Initialize a TypeScript project and add the Prisma CLI as a development dependency:

```terminal
npm init -y
npm init --init-type=module -y
npm install typescript tsx @types/node --save-dev
```

Expand All @@ -110,7 +110,7 @@ This creates a `package.json` file with an initial setup for your TypeScript app
Next, initialize TypeScript with a `tsconfig.json` file in the project:

```terminal
npx tsc --init
npx tsc --init --types=node
```

### 2.2. Set up Prisma ORM
Expand Down