{"id":17972440,"url":"https://github.com/bes-js/nyro","last_synced_at":"2025-08-19T05:09:14.716Z","repository":{"id":259059709,"uuid":"876336577","full_name":"Bes-js/nyro","owner":"Bes-js","description":"A simple and effective promise-based HTTP request library that supports all HTTP methods.","archived":false,"fork":false,"pushed_at":"2024-11-14T15:26:36.000Z","size":1593,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-09T12:43:16.811Z","etag":null,"topics":["anonymity","axios","delete","fetch","get","got","http","http-client","http2","https","node","patch","post","proxy","request"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/nyro","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/Bes-js.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2024-10-21T19:49:42.000Z","updated_at":"2025-05-31T18:30:07.000Z","dependencies_parsed_at":"2024-10-22T04:49:10.554Z","dependency_job_id":null,"html_url":"https://github.com/Bes-js/nyro","commit_stats":null,"previous_names":["bes-js/nyro"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bes-js/nyro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bes-js%2Fnyro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bes-js%2Fnyro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bes-js%2Fnyro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bes-js%2Fnyro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bes-js","download_url":"https://codeload.github.com/Bes-js/nyro/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bes-js%2Fnyro/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271103202,"owners_count":24699646,"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-19T02:00:09.176Z","response_time":63,"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":["anonymity","axios","delete","fetch","get","got","http","http-client","http2","https","node","patch","post","proxy","request"],"created_at":"2024-10-29T16:18:37.641Z","updated_at":"2025-08-19T05:09:14.686Z","avatar_url":"https://github.com/Bes-js.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cbr/\u003e\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"./assets/nyro_logo.png\" align=\"center\"\u003e\n\u003c/p\u003e\n\u003ch4 align=\"center\"\u003eA simple and effective promise-based HTTP \u0026 HTTP/2 request library that supports all HTTP methods.\u003c/h6\u003e\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://img.shields.io/npm/v/nyro?style=for-the-badge\u0026logo=npm\u0026logoColor=red\"\u003e\n\u003cimg src=\"https://img.shields.io/github/repo-size/Bes-js/nyro?style=for-the-badge\u0026logo=github\u0026logoColor=white\"\u003e \n\u003cimg src=\"https://img.shields.io/npm/l/nyro?style=for-the-badge\"\u003e\n\u003cimg src=\"https://img.shields.io/npm/unpacked-size/nyro?style=for-the-badge\"\u003e \n\u003cimg src=\"https://img.shields.io/npm/dt/nyro?style=for-the-badge\u0026logoColor=blue\"\u003e \n\u003cimg src=\"https://img.shields.io/github/package-json/dependency-version/Bes-js/nyro/sequelize?style=for-the-badge\"\u003e\n\u003ca href=\"https://discord.gg/luppux\" target=\"_blank\"\u003e\n\u003cimg alt=\"Discord\" src=\"https://img.shields.io/badge/Support-Click%20here-7289d9?style=for-the-badge\u0026logo=discord\"\u003e \n\u003c/a\u003e\n\u003c/p\u003e\n\n\n## Installation\n\nUsing npm:\n```shell\n$ npm install nyro@latest\n```\n\nOther Installations:\n\n```bash\n$ yarn add nyro@latest\n```\n\n```bash\n$ pnpm add nyro@latest\n```\n\n```bash\n$ deno install npm:nyro@latest\n```\n\n## Example Basic Usage\n```js\nimport nyro, { ResponseType, Method } from 'nyro';\n\n(async() =\u003e {\n\n const { body } = await nyro({\n    url: 'https://hercai.onrender.com/v3/hercai',\n    params: {\n        question: 'Hi How Are You?'\n    }\n    method: Method.Get, // Or 'GET'\n    responseType: ResponseType.Json, // Or 'json'\n    headers: {\n        'User-Agent': 'Nyro'\n    },\n    bodySchema: {\n        content: String,\n        reply: String\n    }\n });\n\n  console.log('Your Question; ' + body.content);\n  console.log('AI Reply; ' + body.reply);\n\n\n})();\n```\n\u003cbr\u003e\n\n## Documentation\n\n#### Main Request\n\n- [x] [`Promise Requests`](documentation/promise.md)\n- [x] [`Options`](documentation/options.md)\n- [x] [`Stream Request`](documentation/stream.md)\n- [x] [`Queue Request`](documentation/queue.md)\n- [x] [`Pagination API`](documentation/pagination.md)\n- [x] [`Create / Extend Request`](documentation/create-extend.md)\n- [x] [`HTTP/2 Support`](documentation/http2.md)\n- [x] [`Response`](documentation/response.md)\n\n#### Timeouts, Retries And Error\n\n- [x] [`Timeout`](documentation/timeout.md)\n- [x] [`Retries`](documentation/retry.md)\n- [x] [`Error`](documentation/error.md)\n\n#### Other Options\n\n- [x] [`Cache`](documentation/cache.md)\n- [x] [`Proxy Support`](documentation/proxy.md)\n- [x] [`Abort / Cancel Request`](documentation/abort.md)\n- [x] [`BodySchema`](documentation/bodyschema.md)\n- [x] [`SSL Options`](documentation/ssl.md)\n- [x] [`Browser Support (Node Only)`](documentation/browser.md)\n\n#### Advanced Options\n\n- [x] [`Events \u0026 Callbacks`](documentation/events.md)\n- [x] [`Plugins \u0026 Advanced Callbacks`](documentation/plugins.md)\n\n#### Special Features\n\n- [x] [`Advanced User Agent Generator`](documentation/user-agent.md)\n- [x] [`Get Advanced Alive Proxy`](documentation/get-proxy.md)\n- [x] [`Layer7 Attack 🤪`](documentation/layer7.md)\n\n\u003cbr\u003e\n\n## License\n\nNyro is licensed under the **GPL-3.0** License. See the [LICENSE](./LICENSE.md) file for details.\n\n## Support\n\n[![Discord Banner](https://api.weblutions.com/discord/invite/luppux/)](https://discord.gg/luppux)\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n\u003ctable align=\"center\" width=\"100%\"\u003e\n\u003ctr\u003e\n\u003ctd align=\"center\"\u003e \n\u003ca href=\"https://www.netacad.com/\" style=\"padding: 10px; display: inline-block\"\u003e \n\u003cimg width=\"100px\" height=\"100px\" src=\"./assets/supporter_logo.png\"/\u003e \n\u003cp align=\"center\"\u003eFree online courses. In-person learning. Certification-aligned pathways in topics like Cybersecurity, Networking, and Python.\nIt’s all here. Are you ready to begin, change, or propel your career?\u003c/p\u003e \n\u003c/a\u003e\n\u003c/td\u003e\n\u003c/tr\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbes-js%2Fnyro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbes-js%2Fnyro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbes-js%2Fnyro/lists"}