{"id":18886690,"url":"https://github.com/supabase-community/postgres-wasm-fdw","last_synced_at":"2025-08-30T16:05:19.346Z","repository":{"id":247243997,"uuid":"825353020","full_name":"supabase-community/postgres-wasm-fdw","owner":"supabase-community","description":"A WebAssembly foreign data wrapper example project","archived":false,"fork":false,"pushed_at":"2024-12-09T07:12:56.000Z","size":57,"stargazers_count":21,"open_issues_count":0,"forks_count":16,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-08-30T06:28:29.562Z","etag":null,"topics":["foreign-data-wrapper","postgres","rust","wasm","webassembly"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/supabase-community.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},"funding":{"github":["supabase"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2024-07-07T14:50:43.000Z","updated_at":"2025-08-15T03:29:19.000Z","dependencies_parsed_at":"2024-07-30T14:32:20.384Z","dependency_job_id":"4791c570-c9c1-48d9-bbaf-ac94159220bd","html_url":"https://github.com/supabase-community/postgres-wasm-fdw","commit_stats":{"total_commits":29,"total_committers":3,"mean_commits":9.666666666666666,"dds":0.4137931034482759,"last_synced_commit":"d5e033d09a2bdd8b8e28cf89bf1a46f2bfbcc7c5"},"previous_names":["supabase/wasm-fdw-example","supabase-community/wasm-fdw-example"],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/supabase-community/postgres-wasm-fdw","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fpostgres-wasm-fdw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fpostgres-wasm-fdw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fpostgres-wasm-fdw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fpostgres-wasm-fdw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/supabase-community","download_url":"https://codeload.github.com/supabase-community/postgres-wasm-fdw/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fpostgres-wasm-fdw/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272871740,"owners_count":25007225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"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":["foreign-data-wrapper","postgres","rust","wasm","webassembly"],"created_at":"2024-11-08T07:30:01.722Z","updated_at":"2025-08-30T16:05:19.326Z","avatar_url":"https://github.com/supabase-community.png","language":"Rust","funding_links":["https://github.com/sponsors/supabase"],"categories":[],"sub_categories":[],"readme":"# Postgres Wasm FDW [Template]\n\nThis project demostrates how to create a Postgres Foreign Data Wrapper with Wasm, using the [Wrappers framework](https://github.com/supabase/wrappers).\n\nThis example reads the [realtime GitHub events](https://api.github.com/events) into a Postgres database. \n\n## Project Structure\n\n```bash\n├── src\n│   └── lib.rs              # The package source code. We will implement the FDW logic, in this file.\n├── supabase-wrappers-wit   # The Wasm Interface Type provided by Supabase. See below for a detailed description.\n│   ├── http.wit\n│   ├── jwt.wit\n│   ├── routines.wit\n│   ├── stats.wit\n│   ├── time.wit\n│   ├── types.wit\n│   ├── utils.wit\n│   └── world.wit\n└── wit                     # The WIT interface this project will use to build the Wasm package.\n    └── world.wit\n```\n\nA [Wasm Interface Type](https://github.com/bytecodealliance/wit-bindgen) (WIT) defines the interfaces between the Wasm FDW (guest) and the Wasm runtime (host). For example, the `http.wit` defines the HTTP related types and functions can be used in the guest, and the `routines.wit` defines the functions the guest needs to implement.\n\n## Getting started\n\nTo get started, visit the [Wasm FDW developing guide](https://fdw.dev/guides/create-wasm-wrapper/).\n\n## License\n\n[Apache License Version 2.0](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsupabase-community%2Fpostgres-wasm-fdw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsupabase-community%2Fpostgres-wasm-fdw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsupabase-community%2Fpostgres-wasm-fdw/lists"}