update install command

This commit is contained in:
Pas 2025-07-21 15:46:31 -06:00
parent ad8db7b315
commit 56198be0c9
3 changed files with 8 additions and 4 deletions

View file

@ -12,7 +12,7 @@ cta:
secondary:
- Open on GitHub →
- https://github.com/p-stream/providers
snippet: npm i @p-stream/providers
snippet: npm i @p-stream/providers@github:p-stream/providers
---
#title

View file

@ -4,15 +4,19 @@
Let's get started with `@p-stream/providers`. First lets install the package.
::alert{type="warning"}
**Note:** The `@p-stream/providers` package is not published on npm. Install it directly from GitHub using the following commands:
::
::code-group
```bash [NPM]
npm install @p-stream/providers
npm install @p-stream/providers@github:p-stream/providers#production
```
```bash [Yarn]
yarn add @p-stream/providers
yarn add @p-stream/providers@github:p-stream/providers#production
```
```bash [PNPM]
pnpm install @p-stream/providers
pnpm add @p-stream/providers@github:p-stream/providers#production
```
::