{"id":20804437,"url":"https://github.com/sequencemedia/verify-url","last_synced_at":"2026-03-14T23:35:03.245Z","repository":{"id":65595046,"uuid":"546173784","full_name":"sequencemedia/verify-url","owner":"sequencemedia","description":"Verify URLs in Node with Fetch or SuperAgent","archived":false,"fork":false,"pushed_at":"2026-01-10T03:59:20.000Z","size":2536,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T01:11:20.453Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sequencemedia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2022-10-05T16:49:57.000Z","updated_at":"2026-01-10T03:59:24.000Z","dependencies_parsed_at":"2025-12-26T00:13:02.304Z","dependency_job_id":null,"html_url":"https://github.com/sequencemedia/verify-url","commit_stats":null,"previous_names":[],"tags_count":283,"template":false,"template_full_name":null,"purl":"pkg:github/sequencemedia/verify-url","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sequencemedia%2Fverify-url","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sequencemedia%2Fverify-url/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sequencemedia%2Fverify-url/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sequencemedia%2Fverify-url/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sequencemedia","download_url":"https://codeload.github.com/sequencemedia/verify-url/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sequencemedia%2Fverify-url/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30521421,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-14T19:51:21.629Z","status":"ssl_error","status_checked_at":"2026-03-14T19:51:12.959Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2024-11-17T19:09:22.582Z","updated_at":"2026-03-14T23:35:03.205Z","avatar_url":"https://github.com/sequencemedia.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @sequencemedia/verify-url\n\nVerifies that a URL is publicly accessible on the network\n\n## `verifyUrl`\n\nThe `verifyUrl` function returns a Promise which resolves to an object\n\nThat object is a _description_\n\n- It always contains a `verification` string (either `PASS` or `FAIL`)\n- It always contains the `url` string\n\n### 1 - The verification request was successful and the remote host returned a status in the `success` range\n\nThe value of `verification` in the description is `PASS`\n\n```typescript\n  export interface ResponseSuccess {\n    verification: string;\n    url: string;\n  }\n```\n\n### 2 - The verification request was successful but the remote host returned a status in the `failure` range\n\nDispatching a request was fine but the host or the path was not\n\n- Perhaps a `500`\n- Perhaps a `404`\n- Etc\n\nThe value of `verification` in the description is `FAIL`\n\n```typescript\n  export interface ResponseFailure {\n    verification: string;\n    url: string;\n    response: {status: number};\n  }\n```\n\n### 3 - The verification request failed\n\nEither the `url` was not a valid URL or dispatching a request to it generated an error\n\n- Perhaps the host does not exist\n- Perhaps the host is not reachable\n- Etc\n\nThe value of `verification` in the description is `FAIL`\n\n```typescript\n  export interface RequestFailure {\n    verification: string;\n    url: string;\n    error: {code: string};\n  }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsequencemedia%2Fverify-url","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsequencemedia%2Fverify-url","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsequencemedia%2Fverify-url/lists"}