Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions content/100-getting-started/01-quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ npm install typescript ts-node @types/node --save-dev

This creates a `package.json` with an initial setup for your TypeScript app.

<Admonition>

See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager.

</Admonition>

Now, initialize TypeScript:

```terminal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ This creates a `package.json` with an initial setup for a Node.js app.

</SwitchTech>

<Admonition>

See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager.

</Admonition>

You can now invoke the Prisma CLI by prefixing it with `npx`:

```terminal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ You can now invoke the Prisma CLI by prefixing it with `npx`:
npx prisma
```

<Admonition>

See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager.

</Admonition>

Next, set up your Prisma project by creating your [Prisma schema](/concepts/components/prisma-schema) file template with the following command:

```terminal copy
Expand Down