45 releases (18 stable)

2.3.0 Nov 11, 2024
2.1.0 Sep 27, 2024
1.8.1 Aug 11, 2024
1.7.0 Jul 22, 2024
0.9.0 Nov 28, 2023

#28 in HTTP client

Download history 133/week @ 2024-08-05 125/week @ 2024-08-12 111/week @ 2024-08-26 196/week @ 2024-09-02 19/week @ 2024-09-09 117/week @ 2024-09-16 88/week @ 2024-09-23 229/week @ 2024-09-30 14/week @ 2024-10-07 12/week @ 2024-10-14 225/week @ 2024-10-21 13/week @ 2024-10-28 7/week @ 2024-11-04 156/week @ 2024-11-11 18/week @ 2024-11-18

199 downloads per month

MIT license

1.5MB
23K 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