Fetchbook is a command-line tool designed to help you manage your collections of HTTP requests. It is based on the standard RequestInit object, and runs in TypeScript with bun.sh.
You can try it out just by running this command:
npx fetchbook run --demo -v
Warning
👷♀️ Fetchbook is currently under active development, expect breaking changes.
To use Fetchbook in you own project:
npx fetchbook init
To create a separate Fetchbook project:
npx fetchbook init <project name>
Alternatively, you can install it manually:
npm install fetchbook
Fetchbook is split in different commands that operate on one or multiple fetch story files.
fetchbook run [story] [options]
Run one or many fetch story files.
npx fetchbook run --demo -v
[story]
(optional): Path to a fetch story file (or folder) that describes an HTTP request. If omitted, Fetchbook will prompt you to search and choose a fetch story in the current folder.
-a, --all
: Run all fetch story files in the current folder recursively.-v, --verbose
: Enable verbose output, providing additional information about the request and response.-d, --dry-run
: Perform a dry run, simulating the request without making an actual HTTP call.
-
Run a single fetch story file:
fetchbook run path/to/your/story.fetch.ts
-
Run all fetch story files in the current folder and its subfolders:
fetchbook run -a
-
Perform a dry run of a fetch story file:
fetchbook run path/to/your/story.fetch.ts -d
-
Run a fetch story file with verbose output:
fetchbook run path/to/your/story.fetch.ts -v
fetchbook export [story] [options]
Export a fetch story file as other formats (now only curl
is supported) and display it in the terminal instead of making the HTTP request.
npx fetchbook export --format=curl --demo -a
[story]
(optional): Path to a fetch story file (or folder) that describes an HTTP request. If omitted, Fetchbook will prompt you to search and choose a fetch story in the current folder.
-f, --format
: Export the request as a cURL command and display it in the terminal instead of making the HTTP request.-a, --all
: Export all fetch story files in the current folder recursively.
-
Export a single fetch story file as a cURL command:
fetchbook export --format curl path/to/your/story.fetch.ts
-
Export all fetch story files in the current folder and its subfolders:
fetchbook export --format curl -a
npx fetchbook init [name]
Initialize a fetchbook project.
[name]
(optional): Name of the project. If set Fetchbook will create a new folder with apackage.json
file and a bunch of sample fetch story files. If not set Fetchbook will initialize an existing project.
-
Run a single fetch story file:
npx fetchbook init my-fetchbook-project
Fetch story files are TypeScript modules ending with .fetch.ts
that must comply with the following type definition:
type FetchStory = {
name: string;
url: string;
init: RequestInit;
expect?: Partial<{
status: number;
statusText: string;
headers: Record<string, string>;
body: any;
}>;
before?: FetchStory[];
after?: FetchStory[];
};
Here's an explanation of each property within the FetchStory
type definition:
name
(string): A descriptive name for the story, helping you identify and organize your requests.url
(string): The URL of the HTTP request.init
(RequestInit): An object containing the request's initialization options, including method, headers, and body.expect
(optional): Defines your expectations for the response, such as expected HTTP status code, status text, headers and body.before
(optional): An array ofFetchStory
objects representing requests to execute before the main request.after
(optional): An array ofFetchStory
objects representing requests to execute after the main request.
Here's an example of a Fetchbook fetch story file adhering to the TypeScript definition and the naming convention (ending with .fetch.ts
):
// examples/venusaur.fetch.ts
import { FetchStory } from "fetchbook";
export default {
name: "Get info about Venusaur",
url: "https://pokeapi.co/api/v2/pokemon/venusaur",
init: {
method: "GET",
},
expect: {
status: 200,
headers: {
"content-type": "application/json; charset=utf-8",
},
body: {
order: 3,
name: "venusaur",
height: 20,
weight: 1000,
},
},
} satisfies FetchStory;
Ensure that your story files adhere to this structure, type definition, and the naming convention (.fetch.ts
) to work seamlessly with Fetchbook. You can create multiple fetch story files to describe different HTTP requests and use Fetchbook to manage and execute them as needed.
Contributions are welcome! These are some of the current pending tasks:
- Print response body by default to mimic a standard cURL request.
- Add command to create a story:
fetchbook create
. - Add command to import a story from other formats:
fetchbook import
. - Add a command to start a web ui:
fetchbook studio
.
Fetchbook is licensed under the MIT License. Feel free to use and modify it according to your needs.
Enjoy using Fetchbook for efficient HTTP request management! If you encounter any issues or have suggestions for improvement, please don't hesitate to open an issue or contribute to the project.