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, WSDL files, and Postman environments into Bruno collection format.Documentation Index
Fetch the complete documentation index at: https://docs.usebruno.com/llms.txt
Use this file to discover all available pages before exploring further.
Installation
Make sure you have Node.js (Node 18 or higher) installed on your local system. It is recommended to use the latest LTS version.
- pnpm
- npm
- yarn
Using pnpm
Conversions
API Reference
postmanToBruno(postmanCollection: object)
Converts a Postman collection to a Bruno collection.
Parameters:
postmanCollection: The Postman collection JSON object
postmanToBrunoEnvironment(postmanEnvironment: object)
Converts a Postman environment to a Bruno environment.
Parameters:
postmanEnvironment: The Postman environment JSON object
insomniaToBruno(insomniaCollection: object)
Converts an Insomnia collection to a Bruno collection.
Parameters:
insomniaCollection: The Insomnia collection JSON object
openApiToBruno(openApiSpec: object)
Converts an OpenAPI specification to a Bruno collection.
Parameters:
openApiSpec: The OpenAPI specification JSON object
wsdlToBruno(wsdlContent: string)
Converts a WSDL file to a Bruno collection with SOAP requests.
Parameters:
wsdlContent: The WSDL file content as a string