{"id":35365620,"url":"https://github.com/cleve/postgirl","last_synced_at":"2026-02-07T02:02:45.647Z","repository":{"id":331355121,"uuid":"1126302585","full_name":"cleve/postgirl","owner":"cleve","description":"Secure rest client extension for VSCode","archived":false,"fork":false,"pushed_at":"2026-01-24T19:21:12.000Z","size":68,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-25T08:42:50.636Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cleve.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-01T16:04:37.000Z","updated_at":"2026-01-24T19:21:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cleve/postgirl","commit_stats":null,"previous_names":["cleve/postgirl"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/cleve/postgirl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleve%2Fpostgirl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleve%2Fpostgirl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleve%2Fpostgirl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleve%2Fpostgirl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cleve","download_url":"https://codeload.github.com/cleve/postgirl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleve%2Fpostgirl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29184977,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T00:44:15.062Z","status":"online","status_checked_at":"2026-02-07T02:00:07.217Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-02T01:52:50.423Z","updated_at":"2026-02-07T02:02:45.623Z","avatar_url":"https://github.com/cleve.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Postgirl\n\nA secure and user-friendly REST client for Visual Studio Code.\n\n## Features\n\n- **Full HTTP Method Support**: GET, POST, PUT, PATCH, DELETE\n- **Request Cancellation**: Cancel long-running or stuck requests with the cancel button\n- **Custom Headers**: Add, edit, and manage request headers with ease\n- **Persistent Header Storage**: Save your frequently used headers for quick access\n- **Request Storage**: Save complete requests (URL, method, headers, body) for later reuse\n- **Request Body Editor**: Built-in JSON body editor for POST/PUT/PATCH requests\n- **Response Viewer**: Detailed response information with tabbed interface\n  - Response body with automatic JSON formatting\n  - Response headers\n  - Request information\n  - Status codes with color coding\n  - Response time and size metrics\n- **Variables System**: Create and manage variables for use across requests (e.g., `{{baseUrl}}`, `{{token}}`)\n- **Session Export/Import**: Export your entire session (requests, variables, headers) to a binary file and import it later\n- **Export Functionality**: Export request/response data to JSON files\n- **Sidebar Integration**: Quick access from the VS Code Activity Bar\n\n## Getting Started\n\n1. Click the Postgirl icon (🌐) in the Activity Bar\n2. Click **\"New Request\"** or use the command palette: `Postgirl: Open REST Client`\n3. Enter your API URL\n4. Select the HTTP method\n5. Add headers if needed\n6. Add request body for POST/PUT/PATCH requests\n7. Click **Send**\n\n## Usage\n\n### Making Requests\n\nEnter your API endpoint URL, select the HTTP method, and configure headers as needed. For POST, PUT, and PATCH requests, you can add a JSON request body.\n\n**Cancelling Requests:**\n- When a request is in progress, a **Cancel** button appears next to the Send button\n- Click **Cancel** to immediately abort the request\n- Useful for long-running requests, timeouts, or unresponsive endpoints\n\n### Managing Headers\n\n- Click **\"Add Header\"** to add more headers\n- Click **\"Save Headers\"** to persist your current headers\n- Click **\"Load Saved Headers\"** to restore previously saved headers\n- View saved headers in the sidebar under **\"Saved Headers\"**\n\n### Saving and Loading Requests\n\n- Click **\"💾 Save Request\"** to save the current request configuration\n- Enter a name for your request when prompted\n- Saved requests appear in the sidebar under **\"Saved Requests\"**\n- Click on any saved request to load it into the editor\n- Right-click (or click the trash icon) on a saved request to delete it\n\n### Viewing Responses\n\nResponses are displayed in a tabbed interface showing:\n- Response body (automatically formatted JSON)\n- Response headers\n- Request details\n- Status code, response time, and content size\n\n### Exporting Results\n\nClick **\"Export Results\"** to save the complete request and response data as a JSON file.\n\n### Managing Variables\n\n- Click **\"Add Variable\"** in the sidebar to create a new variable\n- Enter a variable name (without `{{}}`) and its value\n- Use variables in your URLs, headers, or body by wrapping them: `{{variableName}}`\n- Variables support special characters in names (e.g., `{{api.key}}`, `{{base-url}}`)\n- Variables are automatically replaced when making requests\n- Example: `https://{{baseUrl}}/api/users?token={{authToken}}`\n- Edit or delete variables from the sidebar\n\n### Session Export and Import\n\n**Export Session:**\n- Click the cloud-download icon in the Postgirl sidebar\n- Choose a location to save your session file (`.pgrl` format)\n- The file contains all your saved requests, variables, and headers in a compact binary format\n\n**Import Session:**\n- Click the cloud-upload icon in the Postgirl sidebar\n- Select a previously exported `.pgrl` file\n- **Warning**: Importing will replace your current session data\n- Confirm the import to restore all requests, variables, and headers\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcleve%2Fpostgirl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcleve%2Fpostgirl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcleve%2Fpostgirl/lists"}