Posting is a powerful HTTP client which brings Postman-like functionality to your terminal. It works over SSH, stores collections in a Git-friendly fo

Search code, repositories, users, issues, pull requests...

submited by
Style Pass
2024-07-05 12:30:05

Posting is a powerful HTTP client which brings Postman-like functionality to your terminal. It works over SSH, stores collections in a Git-friendly format, and can be operated efficiently using both keyboard and mouse.

Some notable missing features include pre/post-request scripts, and the ability to send files. Also, some of the existing features are still being fleshed out.

If you don't supply a directory, Posting will use the default collection directory. You can check where this is by running posting locate collection.

You can load .env files into Posting from the command line using the --env option, and then refer to variables in these files within the UI.

In the dev and prod environments, some variables are shared, but others are different. We can model this by having a single shared.env file which contains variables which are shared between environments, and then a dev.env and prod.env file which contain environment specific variables.

When working in the dev environment, you can then load all of the shared variables and all of the development environment specific variables using the --env option:

Leave a Comment