47 releases (20 stable)

new 2.5.0 Jan 7, 2025
2.4.0 Dec 27, 2024
2.3.0 Nov 11, 2024
1.8.1 Aug 11, 2024
0.9.0 Nov 28, 2023

#16 in HTTP client

Download history 37/week @ 2024-09-18 189/week @ 2024-09-25 131/week @ 2024-10-02 14/week @ 2024-10-09 192/week @ 2024-10-16 45/week @ 2024-10-23 11/week @ 2024-10-30 129/week @ 2024-11-06 36/week @ 2024-11-13 16/week @ 2024-11-20 113/week @ 2024-11-27 854/week @ 2024-12-04 495/week @ 2024-12-11 119/week @ 2024-12-18 264/week @ 2024-12-25 63/week @ 2025-01-01

1,091 downloads per month

MIT license

1.5MB
13K SLoC

Slumber

Test CI crates.io Sponsor

Slumber example

Slumber is a TUI (terminal user interface) HTTP client. Define, execute, and share configurable HTTP requests. Slumber is built on some basic principles:

  • It will remain free to use forever
  • You own your data: all configuration and data is stored locally and can be checked into version control
  • It will never be enshittified

Features

Examples

Slumber is based around collections. A collection is a group of request recipes, which are templates for the requests you want to run. A simple collection could be:

# slumber.yml
requests:
  get: !request
    method: GET
    url: https://httpbin.org/get

  post: !request
    method: POST
    url: https://httpbin.org/post
    body: !json { "id": 3, "name": "Slumber" }

Create this file, then run the TUI with slumber.

For a more extensive example, see the docs.

Dependencies

~47–65MB
~1M SLoC