49 releases (22 stable)

new 3.0.1 Feb 19, 2025
2.5.0 Jan 7, 2025
2.4.0 Dec 27, 2024
2.3.0 Nov 11, 2024
0.9.0 Nov 28, 2023

#30 in HTTP client

Download history 10/week @ 2024-10-29 103/week @ 2024-11-05 61/week @ 2024-11-12 17/week @ 2024-11-19 35/week @ 2024-11-26 784/week @ 2024-12-03 623/week @ 2024-12-10 131/week @ 2024-12-17 274/week @ 2024-12-24 172/week @ 2024-12-31 292/week @ 2025-01-07 44/week @ 2025-01-14 3/week @ 2025-01-21 6/week @ 2025-01-28 18/week @ 2025-02-04 146/week @ 2025-02-11

177 downloads per month

MIT license

2MB
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–64MB
~1M SLoC