{"id":42915079,"url":"https://github.com/onedionys/onedionys-http-client","last_synced_at":"2026-01-30T17:05:57.218Z","repository":{"id":226460031,"uuid":"768720500","full_name":"onedionys/onedionys-http-client","owner":"onedionys","description":"A package for making HTTP requests to a server with easy-to-understand syntax.","archived":false,"fork":false,"pushed_at":"2024-05-07T01:23:10.000Z","size":133,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-29T06:07:28.423Z","etag":null,"topics":["http-client","onedionys","package-manager","tea"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/onedionys-http-client","language":"JavaScript","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/onedionys.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":"2024-03-07T15:58:06.000Z","updated_at":"2024-05-07T01:23:14.000Z","dependencies_parsed_at":"2024-03-31T13:39:36.046Z","dependency_job_id":"553f1d4f-4bfb-4582-860a-a8e0ec997cdb","html_url":"https://github.com/onedionys/onedionys-http-client","commit_stats":null,"previous_names":["onedionys/onedionys-http-client"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/onedionys/onedionys-http-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onedionys%2Fonedionys-http-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onedionys%2Fonedionys-http-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onedionys%2Fonedionys-http-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onedionys%2Fonedionys-http-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/onedionys","download_url":"https://codeload.github.com/onedionys/onedionys-http-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onedionys%2Fonedionys-http-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28915942,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T16:37:38.804Z","status":"ssl_error","status_checked_at":"2026-01-30T16:37:37.878Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["http-client","onedionys","package-manager","tea"],"created_at":"2026-01-30T17:05:57.084Z","updated_at":"2026-01-30T17:05:57.213Z","avatar_url":"https://github.com/onedionys.png","language":"JavaScript","funding_links":["https://www.buymeacoffee.com/onedionys"],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eWelcome to One Dionys - HTTP Client! 👋 \u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eA package for making HTTP requests to a server with easy-to-understand syntax. 💖 \u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://img.shields.io/github/contributors/onedionys/onedionys-http-client?style=flat-square\"\u003e\n\u003cimg src=\"https://img.shields.io/github/issues/onedionys/onedionys-http-client?style=flat-square\"\u003e\n\u003cimg src=\"https://img.shields.io/github/stars/onedionys/onedionys-http-client?style=flat-square\"\u003e \n\u003cimg src=\"https://img.shields.io/github/forks/onedionys/onedionys-http-client?style=flat-square\"\u003e\n\u003cimg src=\"https://img.shields.io/github/last-commit/onedionys/onedionys-http-client.svg?style=flat-square\"\u003e\n\u003cimg src=\"https://img.shields.io/github/languages/code-size/onedionys/onedionys-http-client?style=flat-square\"\u003e\n\u003cimg src=\"https://img.shields.io/github/license/onedionys/onedionys-http-client?style=flat-square\"\u003e\n\u003c/p\u003e\n\n## 💾 Requirements\n\n* `Web Browser` - Can be used as an emulator to build applications. Example [Chrome, Firefox, Safari \u0026 Opera].\n* `Internet` - Because many use CDN and to make it easier to find solutions to all problems.\n\n## 🎯 How To Use\n\n#### Example Syntax\n\n```javascript\nconst { HttpClient } = require('./src/http-client');\n\nconst httpClient = new HttpClient();\n\n// GET\nhttpClient.get('https://jsonplaceholder.typicode.com/posts/1')\n.then(response =\u003e {\n    console.log('GET Response:', response);\n})\n.catch(error =\u003e {\n    console.error('Error:', error);\n});\n\n// POST\nhttpClient.post('https://jsonplaceholder.typicode.com/posts', data)\n.then(response =\u003e {\n    console.log('POST Response:', response);\n})\n.catch(error =\u003e {\n    console.error('Error:', error);\n});\n```\n\n#### Explanation\n\n* This package provides a simple HTTP client for making GET and POST requests using Axios library.\n\n#### Return Value\n\n* The methods get() and post() return a Promise that resolves with an object containing the HTTP status code and response data. If an error occurs during the request, it returns an object with the HTTP status code and error response data.\n\n## 📆 Release Date\n\n* v1.0.0 : 07 March 2024\n* v1.0.1 : 11 March 2024\n* v4.0.0 : 11 March 2024\n* v4.0.1 : 13 March 2024\n* v4.0.2 : 18 March 2024\n* v5.0.0 : 31 March 2024\n\n## 🧑 Author\n\n* Facebook : \u003ca href=\"https://www.facebook.com/theonedionys\"\u003e Oned Ionys\u003c/a\u003e\n* Instagram : \u003ca href=\"https://www.instagram.com/onedionys/\"\u003e @onedionys\u003c/a\u003e\n* Twitter : \u003ca href=\"https://twitter.com/onedionys\"\u003e @onedionys\u003c/a\u003e\n* LinkedIn :  \u003ca href=\"https://www.linkedin.com/in/onedionys/\"\u003e @onedionys\u003c/a\u003e\n\n## 📝 License\n\n* Copyright © 2024 One Dionys\n* **One Dionys - HTTP Client is an open source project licensed under the MIT license**\n\n## ☕️ Suppport \u0026 Donation\n\nLove One Dionys - HTTP Client? Support this project by donating or sharing with others in need.\n\n\u003ca href=\"https://www.buymeacoffee.com/onedionys\"\u003e\u003cimg src=\"https://img.shields.io/badge/Buy_Me_A_Coffee-FFDD00?style=for-the-badge\u0026logo=buy-me-a-coffee\u0026logoColor=black\"/\u003e \u003c/a\u003e\n\n**Made with ❤️ One Dionys**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonedionys%2Fonedionys-http-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fonedionys%2Fonedionys-http-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonedionys%2Fonedionys-http-client/lists"}