{"id":48230121,"url":"https://github.com/solaoi/co-metub","last_synced_at":"2026-04-04T19:32:41.781Z","repository":{"id":37885331,"uuid":"406022656","full_name":"solaoi/co-metub","owner":"solaoi","description":"This is an application for multiple people to manage the stub APIs.","archived":false,"fork":false,"pushed_at":"2024-05-02T02:07:16.000Z","size":3946,"stargazers_count":5,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-03T02:34:52.176Z","etag":null,"topics":["apis","blitzjs","co-metub","docker","dummy","dummy-api","dummy-server","http","json","mock","mock-api","mock-server","mocking","rest","stub","stub-api","stub-server","stubbing","xml"],"latest_commit_sha":null,"homepage":"","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/solaoi.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":"SECURITY.md","support":null}},"created_at":"2021-09-13T15:13:52.000Z","updated_at":"2023-12-28T00:40:33.000Z","dependencies_parsed_at":"2022-07-09T10:31:20.282Z","dependency_job_id":null,"html_url":"https://github.com/solaoi/co-metub","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/solaoi/co-metub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solaoi%2Fco-metub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solaoi%2Fco-metub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solaoi%2Fco-metub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solaoi%2Fco-metub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/solaoi","download_url":"https://codeload.github.com/solaoi/co-metub/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solaoi%2Fco-metub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31410828,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T19:29:44.979Z","status":"ssl_error","status_checked_at":"2026-04-04T19:29:11.535Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["apis","blitzjs","co-metub","docker","dummy","dummy-api","dummy-server","http","json","mock","mock-api","mock-server","mocking","rest","stub","stub-api","stub-server","stubbing","xml"],"created_at":"2026-04-04T19:32:39.817Z","updated_at":"2026-04-04T19:32:41.765Z","avatar_url":"https://github.com/solaoi.png","language":"TypeScript","readme":"# **co-metub**\n\n![license](https://img.shields.io/github/license/solaoi/co-metub)\n[![CodeQL](https://github.com/solaoi/co-metub/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/solaoi/co-metub/actions/workflows/codeql-analysis.yml)\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/solaoi/co-metub)](https://github.com/solaoi/co-metub/releases)\n[![GitHub Sponsors](https://img.shields.io/github/sponsors/solaoi?color=db61a2)](https://github.com/sponsors/solaoi)\n\nThis is an application for multiple people to manage the stub APIs.\n\n## Getting Started\n\n### Docker\n\nAll you have to do is the following.\n\n```sh\n# Specify the port you want to provide\nHOST_PORT=8080\n# If you run this app on http://, you should set true\nDISABLE_SECURE_COOKIES=false\n# Let's enjoy!\ndocker run --init -e SESSION_SECRET_KEY=\"your random string of at least 32 bytes\" \\\n-e DISABLE_SECURE_COOKIES=$DISABLE_SECURE_COOKIES \\\n-d --restart=on-failure:1 \\\n-p $HOST_PORT:3000 -v $(pwd)/data:/data ghcr.io/solaoi/co-metub:latest\n```\n\n#### Persist the stub data\n\nYour stub data will be persisted under /data in the current directory.\n\n#### See the stub data\n\n```sh\n# Specify the port you want to provide\nHOST_PORT=3000\ndocker run --init -d -p $HOST_PORT:5555 -v $(pwd)/data:/data ghcr.io/solaoi/co-metub:latest \\\nblitz prisma studio\n```\n\n## Usage\n\n### Create Project\n\nProject is the place to manage your stubs.\n\nLet's create the project with ADD button.\n\n\u003cimg width=\"912\" alt=\"スクリーンショット 2021-09-18 0 42 26\" src=\"https://user-images.githubusercontent.com/46414076/133816382-fd6c7ab5-e91b-4378-84e2-f1356314937d.png\"\u003e\n\u003cimg width=\"912\" alt=\"スクリーンショット 2021-09-18 0 44 26\" src=\"https://user-images.githubusercontent.com/46414076/133816599-a7eb710d-666c-4f58-8392-cb26806dcb51.png\"\u003e\n\n### Create Stub\n\nOn Project, you could create stubs with ADD button.\n\n\u003cimg width=\"912\" alt=\"スクリーンショット 2021-09-18 0 45 59\" src=\"https://user-images.githubusercontent.com/46414076/133816811-18560c1b-b429-483e-a180-f416c1ad8df6.png\"\u003e\n\u003cimg width=\"912\" alt=\"スクリーンショット 2021-10-11 22 38 27\" src=\"https://user-images.githubusercontent.com/46414076/136799764-6ed79fc3-34fd-434b-8050-f41cd99e36e4.png\"\u003e\n\n### Get Stub URL\n\nYou get the stub with the COPY button in Project or Stub.\n\n#### Project\n\n\u003cimg width=\"912\" alt=\"スクリーンショット 2021-09-18 0 48 55\" src=\"https://user-images.githubusercontent.com/46414076/133817247-e355bdbf-b83a-4020-99e8-d192bb991f58.png\"\u003e\n\n#### Stub\n\n\u003cimg width=\"912\" alt=\"スクリーンショット 2021-10-11 22 42 59\" src=\"https://user-images.githubusercontent.com/46414076/136800374-e49c2b7e-fde8-400d-8acb-1d5713a435e9.png\"\u003e\n","funding_links":["https://github.com/sponsors/solaoi"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolaoi%2Fco-metub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolaoi%2Fco-metub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolaoi%2Fco-metub/lists"}