Skip to content

Commit 5762996

Browse files
authored
Merge pull request #304 from ganesh-bruno/update/converter
added installation guide to bruno converters
2 parents e4ad4ef + e013755 commit 5762996

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

src/pages/converters/overview.mdx

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,45 @@
11
import { Callout } from 'nextra/components'
2+
import { Tabs } from 'nextra/components'
23

34
# Bruno Converters
45

56
Bruno converter is a standalone NPM package that provides programmatic conversion of various API specification formats to Bruno collections. This package allows you to convert Postman collections, Insomnia collections, OpenAPI specifications, and Postman environments into Bruno collection format.
67

78
## Installation
89

10+
<Callout emoji="">
11+
Make sure you have Node.js installed on your local system. It is recommended to use the latest LTS version (Node 18 or higher).
12+
</Callout>
13+
14+
To install the Bruno Converters, use the node package manager of your choice:
15+
16+
<Tabs items={['pnpm', 'npm', 'yarn']}>
17+
<Tabs.Tab>
18+
### Using pnpm
19+
20+
```bash
21+
pnpm install -g @usebruno/cli
22+
```
23+
</Tabs.Tab>
24+
<Tabs.Tab>
25+
26+
### Using npm
927
```bash
10-
npm install @usebruno/converters
28+
npm install -g @usebruno/cli
1129
```
1230

31+
</Tabs.Tab>
32+
<Tabs.Tab>
33+
34+
### Using yarn
35+
```bash
36+
yarn global add @usebruno/cli
37+
```
38+
</Tabs.Tab>
39+
</Tabs>
40+
41+
For more details, visit the official [NPM Page for Bruno Converters](https://www.npmjs.com/package/@usebruno/converters)
42+
1343
## Usage
1444

1545
### Convert Postman collection to Bruno collection

0 commit comments

Comments
 (0)