{"id":31968403,"url":"https://github.com/ihcsim/flight-routes","last_synced_at":"2026-07-18T02:37:02.641Z","repository":{"id":149608302,"uuid":"100676677","full_name":"ihcsim/flight-routes","owner":"ihcsim","description":"A webtask that checks if two airports are connected","archived":false,"fork":false,"pushed_at":"2017-08-18T05:39:06.000Z","size":1,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-07-18T02:36:30.650Z","etag":null,"topics":["javascript","webtask"],"latest_commit_sha":null,"homepage":null,"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/ihcsim.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":"2017-08-18T05:38:31.000Z","updated_at":"2018-02-14T23:37:47.000Z","dependencies_parsed_at":"2023-04-25T11:32:55.346Z","dependency_job_id":null,"html_url":"https://github.com/ihcsim/flight-routes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ihcsim/flight-routes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihcsim%2Fflight-routes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihcsim%2Fflight-routes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihcsim%2Fflight-routes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihcsim%2Fflight-routes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ihcsim","download_url":"https://codeload.github.com/ihcsim/flight-routes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihcsim%2Fflight-routes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35602804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-18T02:00:07.223Z","response_time":61,"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":["javascript","webtask"],"created_at":"2025-10-14T18:52:38.379Z","updated_at":"2026-07-18T02:37:02.636Z","avatar_url":"https://github.com/ihcsim.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flight-routes\n\n## Introduction\nflight-routes is a webtask that checks if two airports are connected. It uses the flight routes data from https://openflights.org.\n\nA running instance of this webtask has been posted to [webtask.io](https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes?src=YVR\u0026des=SFO).\n\nThe following is the supported query parameters:\n\nParameters | Descriptions | Defaults\n---------- | ------------ | -------\n`src`      | the 3-letter IATA or 4-letter ICAO code of the source airport      |\n`des`      | the 3-letter IATA or 4-letter ICAO code of the destination airport |\n\nAn airport locator at [logisticsworld.com](http://www.logisticsworld.com/airports.asp) can be used to find an airport IATA and ICAO code.\n\nSome sample test runs using `curl`:\n```\n$ curl \"https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes/?src=NBO\u0026des=MGQ\"\n\"NBO and MGQ are connected\"\n$ curl \"https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes/?src=SFO\u0026des=YVR\"\n\"SFO and YVR are connected\"\n$ curl \"https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes/?src=KSFO\u0026des=YVR\"\n\"KSFO and YVR aren't connected\"\n$ curl \"https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes/?src=SFO\u0026des=YVR\"\n\"SFO and YVR are connected\"\n$ curl \"https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes/?src=YBR\u0026des=YVR\"\n\"YBR and YVR aren't connected\"\n$ curl \"https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes/?src=YYZ\u0026des=YVR\"\n\"YYZ and YVR are connected\"\n$ curl \"https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes/?src=YWG\u0026des=YVR\"\n\"YWG and YVR are connected\"\n$ curl \"https://wt-e9563e87ef7289e475f9ffdf6e61081c-0.run.webtask.io/flight-routes/?src=SFO\u0026des=NRT\"\n```\n\n## Development\n\nPrerequisites:\n\n* Install the [wt-cli 6.2.2](https://webtask.io/cli) CLI\n* Initialize your webtask profile using `wt init`\n\nInstall this webtask by running:\n```\n$ wt create -n flight-routes app.js\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fihcsim%2Fflight-routes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fihcsim%2Fflight-routes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fihcsim%2Fflight-routes/lists"}