{"id":26610247,"url":"https://github.com/progzone122/aur-wrapper","last_synced_at":"2026-02-16T09:04:14.782Z","repository":{"id":282706399,"uuid":"948475829","full_name":"progzone122/aur-wrapper","owner":"progzone122","description":"A simple wrapper for RPC API and RSS for AUR (Arch User Repository)","archived":false,"fork":false,"pushed_at":"2025-03-17T22:03:03.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T02:38:27.876Z","etag":null,"topics":["api","arch","aur","javascript","packages","rpc","rss","typescript","wrapper"],"latest_commit_sha":null,"homepage":"https://npmjs.com/package/aur-wrapper ","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/progzone122.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,"zenodo":null}},"created_at":"2025-03-14T12:03:58.000Z","updated_at":"2025-03-23T10:38:08.000Z","dependencies_parsed_at":"2025-03-24T01:37:51.837Z","dependency_job_id":null,"html_url":"https://github.com/progzone122/aur-wrapper","commit_stats":null,"previous_names":["progzone122/aur-wrapper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/progzone122/aur-wrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progzone122%2Faur-wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progzone122%2Faur-wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progzone122%2Faur-wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progzone122%2Faur-wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/progzone122","download_url":"https://codeload.github.com/progzone122/aur-wrapper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progzone122%2Faur-wrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29504684,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T08:14:25.707Z","status":"ssl_error","status_checked_at":"2026-02-16T08:14:25.334Z","response_time":115,"last_error":"SSL_read: 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":["api","arch","aur","javascript","packages","rpc","rss","typescript","wrapper"],"created_at":"2025-03-24T01:37:47.938Z","updated_at":"2026-02-16T09:04:14.765Z","avatar_url":"https://github.com/progzone122.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AUR TypeScript Wrapper\nA simple wrapper for RPC API and RSS for AUR (Arch User Repository)\n## Install\n```shell\nnpm install aur-wrapper \n```\n## Example using\n```ts\nimport AurWebWrapper from \"aur-wrapper\";\n\nlet wrapper: AurWebWrapper = new AurWebWrapper({\n    proxy: true\n});\n\nwrapper.rpc.getPackageInfo(\"warp-gui\").then((info) =\u003e {\n    if (info.success) {\n        console.log(info);\n    } else {\n        console.error(info)\n    }\n})\n\nwrapper.rss.getLatestPackages().then((packages) =\u003e {\n    if (packages.success) {\n        console.log(packages.data);\n    } else {\n        console.error(packages.error);\n    }\n})\n\nwrapper.rpc.getPackagesInfo([\"warp-gui\", \"mixerdialog\"]).then((info) =\u003e {\n    if (info.success) {\n        console.log(info);\n    } else {\n        console.error(info)\n    }\n})\n\nwrapper.rpc.search(\"warp\").then(result =\u003e {\n    if (result.success) {\n        console.log(result.data.results.slice(0, 2));\n    }\n});\n```\n\n## Configuration\nConfigure the wrapper instance before using it.\n\n| Argument | Description                                                                    | Type    | Default                   |\n|----------|--------------------------------------------------------------------------------|---------|---------------------------|\n| baseUrl  | Domain for all requests to AUR                                                 | string  | https://aur.archlinux.org |\n| proxy    | Proxies all requests through the [corsproxy.io](https://corsproxy.io) service  | boolean | false                     |\n\n### Server-side\nIf you are using the library on the server side, no configuration is required.\n```ts\nlet wrapper: AurWebWrapper = new AurWebWrapper({});\n```\n\n### Client-side\nIf you want to send requests on the client side and bypass CORS. Configure the use of proxy.\n```ts\nlet wrapper: AurWebWrapper = new AurWebWrapper({\n    proxy: true\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogzone122%2Faur-wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprogzone122%2Faur-wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogzone122%2Faur-wrapper/lists"}