bell-lang
v0.1.4
Published
A simple script for making http requests
Readme
Bell (bell-lang)
Bell is a simple scripting language for describing and making API calls.
- Readable: Unlike Postman which buries information in menus, Bell files are plain text.
- Collaborative: Store scripts in your git repo for easy team collaboration.
- Flexible: Run from your CLI, VSCode, or convert from existing Postman collections.
Links
Quick Start
Install the CLI:
npm install -g bell-langCreate a .bel file (e.g., getUser.GET.bel):
id = 1
url "https://jsonplaceholder.typicode.com/users/{id}"
GET
log response.body.nameRun it:
bell run getUser.GET.bel