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

#18 in HTTP client

Download history 84/week @ 2024-09-22 237/week @ 2024-09-29 14/week @ 2024-10-06 12/week @ 2024-10-13 221/week @ 2024-10-20 18/week @ 2024-10-27 6/week @ 2024-11-03 151/week @ 2024-11-10 22/week @ 2024-11-17 9/week @ 2024-11-24 580/week @ 2024-12-01 786/week @ 2024-12-08 161/week @ 2024-12-15 285/week @ 2024-12-22 142/week @ 2024-12-29 232/week @ 2025-01-05

887 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

~46–65MB
~1M SLoC