Skip to content

Commit db04c55

Browse files
committed
added tabs components to installation page
1 parent 958fb68 commit db04c55

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

src/pages/bru-cli/installation.mdx

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,36 @@
11
import { Callout } from 'nextra/components'
2-
2+
import { Tabs } from 'nextra/components'
33

44
# Installation
55

66
<Callout emoji="">
77
Make sure you have Node.js installed on your local system. It is recommended to use the latest LTS version (Node 18 or higher).
88
</Callout>
99

10-
To install the Bruno CLI, use the node package manager of your choice, such as NPM:
11-
```bash copy
10+
To install the Bruno CLI, use the node package manager of your choice:
11+
12+
<Tabs items={['pnpm', 'npm', 'yarn']}>
13+
<Tabs.Tab>
14+
### Using pnpm
15+
16+
```bash
17+
pnpm install -g @usebruno/cli
18+
```
19+
</Tabs.Tab>
20+
<Tabs.Tab>
21+
22+
### Using npm
23+
```bash
1224
npm install -g @usebruno/cli
1325
```
26+
27+
</Tabs.Tab>
28+
<Tabs.Tab>
29+
30+
### Using yarn
31+
```bash
32+
yarn global add @usebruno/cli
33+
```
34+
</Tabs.Tab>
35+
</Tabs>
1436
For more details, visit the official [NPM Page for Bruno CLI](https://www.npmjs.com/package/@usebruno/cli)

0 commit comments

Comments
 (0)