{"id":15408970,"url":"https://github.com/rojvv/foundationdb_deno","last_synced_at":"2025-12-11T21:09:34.943Z","repository":{"id":247200790,"uuid":"612673692","full_name":"rojvv/foundationdb_deno","owner":"rojvv","description":"FoundationDB for Deno","archived":false,"fork":false,"pushed_at":"2023-03-27T14:54:15.000Z","size":33,"stargazers_count":5,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-20T01:53:08.702Z","etag":null,"topics":["deno","ffi","foundationdb"],"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/rojvv.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":"2023-03-11T16:39:15.000Z","updated_at":"2023-09-11T19:34:41.000Z","dependencies_parsed_at":"2024-07-07T10:25:38.242Z","dependency_job_id":"3084f698-9385-4c43-a3c1-e99a877b90ae","html_url":"https://github.com/rojvv/foundationdb_deno","commit_stats":null,"previous_names":["rojvv/foundationdb_deno","roj1512/foundationdb_deno"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/rojvv/foundationdb_deno","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rojvv%2Ffoundationdb_deno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rojvv%2Ffoundationdb_deno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rojvv%2Ffoundationdb_deno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rojvv%2Ffoundationdb_deno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rojvv","download_url":"https://codeload.github.com/rojvv/foundationdb_deno/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rojvv%2Ffoundationdb_deno/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261255906,"owners_count":23131478,"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","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":["deno","ffi","foundationdb"],"created_at":"2024-10-01T16:36:17.479Z","updated_at":"2025-12-11T21:09:29.874Z","avatar_url":"https://github.com/rojvv.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FoundationDB for Deno\n\n```ts\nimport {\n  createDatabase,\n  selectAPIVersion,\n  startNetwork,\n  stopNetwork,\n} from \"https://deno.land/x/fdb/mod.ts\";\n\nselectAPIVersion(710);\nstartNetwork();\n\nconst database = createDatabase();\n\nconst transaction = database.openTenant(\"yourTenant\").createTransaction();\nconst future = transaction.get(\"yourKey\");\n\nfuture.blockUntilReady(); // or `future.setCallback`\n\nfuture.getError(); // throws if the future has error\n\nconst value = future.getValue();\n\nif (value == null) {\n  console.log(\"Key not found\");\n} else {\n  const string = new TextDecoder().decode(new Uint8Array(value));\n  console.log(`yourKey is ${string}`);\n}\n\nstopNetwork();\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frojvv%2Ffoundationdb_deno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frojvv%2Ffoundationdb_deno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frojvv%2Ffoundationdb_deno/lists"}