Skip to content

Basic http client with locally stored configuration

Notifications You must be signed in to change notification settings

jpleatherland/phlitt

Repository files navigation

Phlitt

Phlitt is a basic HTTP client that stores all configuration locally in a JSON file. The name “Phlitt” is an anagram of “http” (with a couple of extra letters) and it’s built with Flutter.

Path Variables

Path variables can be defined with the following syntax:

https://www.google.com/:pathVar

These variables can be edited in the request query pane.

Query Parameters

Query parameters can be edited directly in the URL or via the request query pane.

Environment Variables

Environment variables can be changed using the gear icon in the app bar of a collection. The variables can be used in the URL with double curly braces ({{}}). For example:

{{googleUrl}}/:pathVar

Where {{googleUrl}} in the environment is set to https://www.google.com.