{"id":19520991,"url":"https://github.com/rodneylab/s3-presigned-urls","last_synced_at":"2026-04-13T09:31:42.585Z","repository":{"id":108599611,"uuid":"568836806","full_name":"rodneylab/s3-presigned-urls","owner":"rodneylab","description":"WASM functions for generating AWS S3 compatible presigned URLs","archived":false,"fork":false,"pushed_at":"2022-11-21T14:15:19.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T20:54:12.114Z","etag":null,"topics":["backblaze","backblaze-b2","deno","rust","s3-compatible","wasm"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rodneylab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-11-21T14:11:56.000Z","updated_at":"2022-11-21T14:27:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"d8f097a6-e8ab-4197-bb9a-93430b49aaea","html_url":"https://github.com/rodneylab/s3-presigned-urls","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rodneylab/s3-presigned-urls","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodneylab%2Fs3-presigned-urls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodneylab%2Fs3-presigned-urls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodneylab%2Fs3-presigned-urls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodneylab%2Fs3-presigned-urls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rodneylab","download_url":"https://codeload.github.com/rodneylab/s3-presigned-urls/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodneylab%2Fs3-presigned-urls/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31746294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"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":["backblaze","backblaze-b2","deno","rust","s3-compatible","wasm"],"created_at":"2024-11-11T00:28:42.437Z","updated_at":"2026-04-13T09:31:42.562Z","avatar_url":"https://github.com/rodneylab.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# s3-presigned-urls\n\nGenerate pre-signed URLs for fetching and putting files to S3 compatible storage with WASM.\n\nCan be used with Deno and creates pre-signed URLs for multipart uploads.\n\nTested on Backblaze storage.\n\n```shell\nwasm-pack build --target web\n```\n\nFor quick start, copy generated `pkg` folder to Deno project then in JavaScript/TypeScript:\n\n```javascript\nimport init, {\n  presigned_get_url,\n  presigned_multipart_put_url,\n  presigned_put_url,\n} from \"@/pkg/s3_presigned_urls.js\";\nimport { cuid } from \"cuid/index.js\";\n\nawait init();\n\nconst uploadUrl = presigned_put_url(\n      \"my-movie.m2ts\",\n      \"example-bucket\",\n      600,\n      \"AKIDEXAMPLE\", // Account Id\n      \"wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY\". // account auth token\n      `session-${cuid()}`,\n    );\n```\n\n```javascript\nimport init, {\n  presigned_get_url,\n  presigned_multipart_put_url,\n  presigned_put_url,\n} from \"@/pkg/s3_presigned_urls.js\";\nimport { cuid } from \"cuid/index.js\";\n\nawait init();\n\nconst uploadUrl = presigned_multipart_put_url(\n      \"my-movie.m2ts\",\n      \"example-bucket\",\n      600,\n      4, // number of parts\n      \"your-upload-id\",\n      \"AKIDEXAMPLE\", // Account Id\n      \"wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY\". // account auth token\n      `session-${cuid()}`,\n    );\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frodneylab%2Fs3-presigned-urls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frodneylab%2Fs3-presigned-urls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frodneylab%2Fs3-presigned-urls/lists"}