bruno/packages/bruno-cli
Scott LaPlante 3ee76067fb
CLI fixes for aws and environment modifications (#1713)
* Interpolate awsv4 values to support them including templated values.

Closes #1508

* change to let to allow for rewrite; rename to envVariables for consistency

* When running via CLI, preserve changes to collection variables and
environment variables.

Closes #1255

* Closes #1255 - set well known variable name on environment

* Revert "When running via CLI, preserve changes to collection variables and"

This reverts commit 7c94c9ec19.

* Revert "change to let to allow for rewrite; rename to envVariables for consistency"

This reverts commit 9320b8faf0.

---------

Co-authored-by: Scott LaPlante <scott.laplante@flueid.com>
2024-03-12 23:20:37 +05:30
..
assets/images fix: fix image rendering issues in bru cli npm readme 2023-04-01 13:57:59 +05:30
bin feat: bru cli init 2023-02-06 02:27:22 +05:30
examples feat(#1659): add html reporter for cli (#1660) 2024-03-11 02:13:25 +05:30
src CLI fixes for aws and environment modifications (#1713) 2024-03-12 23:20:37 +05:30
tests feat(#1659): add html reporter for cli (#1660) 2024-03-11 02:13:25 +05:30
.gitignore chore: added package-lock.json to gitignore 2022-10-20 15:16:33 +05:30
changelog.md chore: updated cli version 2024-02-06 05:00:25 +05:30
license.md chore: prep for bruno-cli release 2023-04-01 13:40:23 +05:30
package.json Fix/json with bigints (#1710) 2024-03-04 15:32:35 +05:30
readme.md Fix bruno-cli readme changelog link (#1770) 2024-03-12 23:17:47 +05:30

bruno-cli

With Bruno CLI, you can now run your API collections with ease using simple command line commands.

This makes it easier to test your APIs in different environments, automate your testing process, and integrate your API tests with your continuous integration and deployment workflows.

Installation

To install the Bruno CLI, use the node package manager of your choice, such as NPM:

npm install -g @usebruno/cli

Getting started

Navigate to the directory where your API collection resides, and then run:

bru run

This command will run all the requests in your collection. You can also run a single request by specifying its filename:

bru run request.bru

Or run all requests in a collection's subfolder:

bru run folder

If you need to use an environment, you can specify it with the --env option:

bru run folder --env Local

If you need to collect the results of your API tests, you can specify the --output option:

bru run folder --output results.json

Demo

demo

Support

If you encounter any issues or have any feedback or suggestions, please raise them on our GitHub repository

Thank you for using Bruno CLI!

Changelog

See https://github.com/usebruno/bruno/releases

License

MIT