A modern HTTP Client.
Go to file
Sergio Díaz 14704c09d1
Added a version mismatch warning. (#37)
* I need to stop rewriting builtin methods with reduce.

* Removed redundant fields from the config class.

* Added a warning when module version and beau.yml version differ.
2018-06-14 23:12:16 -06:00
bin Added a version mismatch warning. (#37) 2018-06-14 23:12:16 -06:00
examples Added params as a flag to request. (#20) 2018-05-06 18:26:19 -06:00
src Added a version mismatch warning. (#37) 2018-06-14 23:12:16 -06:00
.gitattributes Added a .gitattributes to fix issues when installing on some OSs 2017-10-23 10:08:42 -06:00
.gitignore Added swp to gitignore. 2018-05-07 17:18:03 +00:00
.prettierrc Reindenting. (#17) 2018-05-04 11:47:28 -06:00
LICENSE Added support for multiple hosts. 2018-01-19 18:10:00 -06:00
README.md Updated README. 2018-05-24 00:20:51 -06:00
circle.yml Added a new top-level setting: defaults. 2017-12-27 16:43:47 -06:00
package-lock.json Cleaning up tests. (#34) 2018-06-02 23:47:03 -06:00
package.json Cleaning up tests. (#34) 2018-06-02 23:47:03 -06:00

README.md

Beau

Testing JSON APIs made easy.

CircleCI

What is Beau?

Beau is a modern http client. It uses a YAML file as configuration allowing you to test APIs without having to write lengthy commands.

A Gif showing how beau works

Installation

npm install -g beau

Usage

$ beau [COMMAND]

COMMANDS
  help      display help for beau
  list      Lists all available requests in the config file.
  request   Executes a request by name.
  validate  Validates the given configuration file against Beau's configuration schema.

Example Configuration File

endpoint: https://httpbin.org/

POST /anything:
    alias: anything
    payload:
        username: sergio
        password: password1
$ beau request anything

Status              Endpoint
200                 https://httpbin.org/anything

{
...
  json: {
    password: "password1",
    username: "sergio"
  },
  method: "POST",
  url: "https://httpbin.org/anything"
  ...
}

Documentation

Visit https://beaujs.com/docs/ for the complete docs.

License

Copyright 2018 David Sergio Díaz

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.