File tree Expand file tree Collapse file tree 1 file changed +25
-3
lines changed Expand file tree Collapse file tree 1 file changed +25
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { Callout } from ' nextra/components'
2
-
2
+ import { Tabs } from ' nextra/components '
3
3
4
4
# Installation
5
5
6
6
<Callout emoji = " " >
7
7
Make sure you have Node.js installed on your local system. It is recommended to use the latest LTS version (Node 18 or higher).
8
8
</Callout >
9
9
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
12
24
npm install -g @usebruno/cli
13
25
```
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 >
14
36
For more details, visit the official [ NPM Page for Bruno CLI] ( https://www.npmjs.com/package/@usebruno/cli )
You can’t perform that action at this time.
0 commit comments