Curly is an open source interactive command-line tool that simplifies the process of constructing cURL requests by guiding users through request building.
- Interactive request building for HTTP methods (GET, POST, PUT, PATCH, DELETE)
- Stores request history and allows recalling previous requests
- Selects and executes past requests using a fuzzy finder
- Easily cleans request history
-
Add the PPA repository:
sudo add-apt-repository ppa:curly-tool/curly sudo apt update
-
Install Curly:
sudo apt install curly
-
Verify the installation:
curly --version
-
Clone the repository:
git clone https://github.com/curly-tool/curly.git
-
Make the script executable and move it to your /bin:
chmod +x curly/curly sudo mv curly/curly /usr/local/bin/
-
Verify the installation:
curly --version
To start an interactive session to build a cURL request:
curly --http
We welcome contributions to Curly! Whether you're reporting a bug, suggesting an improvement, or adding new features, your help is appreciated.
-
Fork the Repository:
- Go to the Curly GitHub repository and click the "Fork" button to create your own copy.
-
Clone Your Fork:
- Clone the repository to your local machine using:
git clone https://github.com/curly-tool/curly.git cd curly
- Clone the repository to your local machine using:
-
Create a Feature Branch:
-
git checkout -b feature/your-feature-name
-
-
Make Your Changes:
- Implement your feature, bug fix, or documentation update.
-
Code Style Guidelines
-
To ensure consistency:
-
Follow ShellCheck guidelines for shell scripting. Use shellcheck to lint your code before submitting:
-
Install shellcheck:
sudo apt install shellcheck
-
Then Run:
shellcheck curly
-
-
Run bats unit tests
-
Run tests to verify everything's functional:
sudo apt install bats
-
Run:
bats tests/
-
(Optional) Add tests for your changes.
-
-
Commit Changes:
- Follow conventional commit messages (e.g.,
feat:
,fix:
,docs:
):git add . git commit -m "feat: add support for PATCH method"
- Follow conventional commit messages (e.g.,
-
Push to Your Fork:
- Push your changes to your GitHub fork:
git push origin feature/your-feature-name
- Push your changes to your GitHub fork:
-
Create a Pull Request:
- Go to the original repository and click the "New Pull Request" button.
- Provide a detailed description of your changes.
-
Fork the Repository:
- Go to the Curly GitHub repository and click the "Fork" button to create your own copy.
-
Clone Your Fork:
- Clone the repository to your local machine using:
git clone https://github.com/curly-tool/curly.git cd curly
- Clone the repository to your local machine using:
-
Create a Feature Branch:
-
git checkout -b feature/your-feature-name
-
-
Make Your Changes:
- Implement your feature, bug fix, or documentation update.
-
Test out changes in the 'curly-local-run' container
- Navigate to: ./docker
- Run:
docker compose -f docker-compose.yml build
- Then Run:
docker compose -f docker-compose.yml up -d
- Enter the container with:
docker exec -it curly-local-run bash
- Unit Testing: unit testing is run on container start-up, inspect with:
docker logs -f curly-local-run
-
Code Style Check: Within the container
-
To ensure consistency:
-
Follow ShellCheck guidelines for shell scripting. Use shellcheck to lint your code before submitting:
-
Run:
shellcheck usr/local/bin/curly
-
-
Commit Changes:
- Follow conventional commit messages (e.g.,
feat:
,fix:
,docs:
):git add . git commit -m "feat: add support for PATCH method"
- Follow conventional commit messages (e.g.,
-
Push to Your Fork:
- Push your changes to your GitHub fork:
git push origin feature/your-feature-name
- Push your changes to your GitHub fork:
-
Create a Pull Request:
- Go to the original repository and click the "New Pull Request" button.
- Provide a detailed description of your changes.
If you encounter any bugs or have feature requests:
-
Check for Existing Issues:
- Before submitting, browse the issue tracker to see if your issue has already been reported.
-
Open a New Issue:
- Click "New Issue" and provide a clear title and description.
- Include:
- Steps to reproduce the issue.
- Expected vs. actual behavior.
- Your environment details (OS, version, etc.).
Example issue format:
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Include steps to reproduce the behavior.
**Expected behavior**
Describe what you expected to happen.
**System Information:**
Include OS information
This project utilizes httpbin for testing HTTP requests. httpbin is licensed under the ISC License.