{"id":15494552,"url":"https://github.com/minodisk/dumping","last_synced_at":"2026-05-09T04:33:36.942Z","repository":{"id":236425695,"uuid":"792588775","full_name":"minodisk/dumping","owner":"minodisk","description":"A temporary server that only dumps and prints requests.","archived":false,"fork":false,"pushed_at":"2024-04-27T14:44:23.000Z","size":400,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T17:13:57.543Z","etag":null,"topics":["csv","dump","form-urlencoded","json","npm","server"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/dumping","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/minodisk.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2024-04-27T02:16:10.000Z","updated_at":"2024-04-27T14:44:22.000Z","dependencies_parsed_at":"2024-04-27T03:22:50.123Z","dependency_job_id":"b90775df-2a86-426c-b2bb-887faa13365b","html_url":"https://github.com/minodisk/dumping","commit_stats":null,"previous_names":["minodisk/dumping"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/minodisk/dumping","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minodisk%2Fdumping","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minodisk%2Fdumping/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minodisk%2Fdumping/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minodisk%2Fdumping/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minodisk","download_url":"https://codeload.github.com/minodisk/dumping/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minodisk%2Fdumping/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807264,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["csv","dump","form-urlencoded","json","npm","server"],"created_at":"2024-10-02T08:14:37.739Z","updated_at":"2026-05-09T04:33:36.919Z","avatar_url":"https://github.com/minodisk.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dumping\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/minodisk/dumping/raw/main/dumptruck.png\"\u003e\n\u003c/p\u003e\n\nA temporary server that only dumps and prints requests.\n\n## Usage\n\nnpm:\n\n```bash\nnpx dumping\n```\n\npnpm:\n\n```bash\npnpx dumping\n```\n\n## Options\n\n```bash\ndumping --help\n\nUsage: dumping [options]\n\nOptions:\n  -p, --port \u003cport\u003e  port to listen on (default: \"3000\")\n  -h, --help         display help for command\n```\n\n## Features\n\n- Parse body if content type is:\n  - `text/plain`\n  - `application/x-www-form-urlencoded`\n  - `application/json`\n  - `text/csv`\n\n## Examples\n\n### Text\n\nInput:\n\n```bash\ncurl -X POST -d 'Hello world!' -H \"Content-Type:text/plain\" http://localhost:3000\n```\n\nOutput:\n\n```bash\nrequest ==========\nhttp://::ffff:127.0.0.1:3000\nhttp -------------\nPOST /\nheaders -----------\n{\n  host: 'localhost:3000',\n  'user-agent': 'curl/7.81.0',\n  accept: '*/*',\n  'content-type': 'text/plain',\n  'content-length': '12'\n}\nbody -----------\nHello world!\n```\n\n### URL encoded form data\n\nInput:\n\n```bash\ncurl -X POST -d 'foo=101\u0026bar=102\u0026baz=103' http://localhost:3000\n```\n\nOutput:\n\n```bash\nrequest ==========\nhttp://::ffff:127.0.0.1:3000\nhttp -------------\nPOST /\nheaders -----------\n{\n  host: 'localhost:3000',\n  'user-agent': 'curl/7.81.0',\n  accept: '*/*',\n  'content-length': '23',\n  'content-type': 'application/x-www-form-urlencoded'\n}\nbody -----------\n{ foo: '101', bar: '102', baz: '103' }\n```\n\n### JSON\n\nInput:\n\n```bash\ncurl -X POST -H 'Content-Type: application/json'  -d '{\"foo\":101,\"bar\":102,\"baz\":103}' http://localhost:3000\n```\n\nOutput:\n\n```bash\nrequest ==========\nhttp://::ffff:127.0.0.1:3000\nhttp -------------\nPOST /\nheaders -----------\n{\n  host: 'localhost:3000',\n  'user-agent': 'curl/7.81.0',\n  accept: '*/*',\n  'content-type': 'application/json',\n  'content-length': '112'\n}\nbody -----------\n{\n  foo: 101,\n  bar: 102,\n  baz: 103,\n}\n```\n\n### CSV\n\nInput:\n\n```bash\ncurl -X POST -H 'Content-Type: text/csv'  -d $'foo,bar,baz\\n0,1,2\\n3,4,5\\n' http://localhost:3000\n```\n\nOutput:\n\n```bash\nrequest ==========\nhttp://::ffff:127.0.0.1:3000\nhttp -------------\nPOST /\nheaders -----------\n{\n  host: 'localhost:3000',\n  'user-agent': 'curl/7.81.0',\n  accept: '*/*',\n  'content-type': 'text/csv',\n  'content-length': '24'\n}\nbody -----------\n[ [ 'foo', 'bar', 'baz' ], [ '0', '1', '2' ], [ '3', '4', '5' ] ]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminodisk%2Fdumping","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminodisk%2Fdumping","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminodisk%2Fdumping/lists"}