{"id":19335398,"url":"https://github.com/ericadamski/rx-get","last_synced_at":"2026-04-20T19:05:45.464Z","repository":{"id":71156227,"uuid":"137366523","full_name":"ericadamski/rx-get","owner":"ericadamski","description":"⛽ An observable wrapper around nodes http(s).get","archived":false,"fork":false,"pushed_at":"2018-09-27T12:15:54.000Z","size":55,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-05T10:45:29.269Z","etag":null,"topics":["http","https","node","nodejs","observable","rxjs","rxjs6"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/rx-get","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericadamski.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2018-06-14T14:07:34.000Z","updated_at":"2018-10-08T17:14:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"fe3e018d-afe2-4f4b-af9b-a8b49f4b968f","html_url":"https://github.com/ericadamski/rx-get","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ericadamski/rx-get","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericadamski%2Frx-get","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericadamski%2Frx-get/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericadamski%2Frx-get/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericadamski%2Frx-get/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericadamski","download_url":"https://codeload.github.com/ericadamski/rx-get/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericadamski%2Frx-get/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32061266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"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":["http","https","node","nodejs","observable","rxjs","rxjs6"],"created_at":"2024-11-10T03:07:18.252Z","updated_at":"2026-04-20T19:05:45.431Z","avatar_url":"https://github.com/ericadamski.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rx-get\n\n[![Size](http://img.badgesize.io/ericadamski/rx-get/master/index.js.svg?compression=gzip)](https://github.com/ngryman/badge-size)\n[![CircleCI](https://circleci.com/gh/ericadamski/rx-get.svg?style=shield)](https://circleci.com/gh/ericadamski/rx-get)\n[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=shield)](https://github.com/prettier/prettier)\n\n⛽️ An observable wrapper for nodes http.get\n\n## Install\n\n`yarn add rx-get`\n\nor\n\n`npm install rx-get`\n\n## Usage\n\n```javascript\nconst get = require('rx-get');\n\nconst token = 'your_github_token';\n\n// Simple GET request\nget('https://api.github.com/emojis', {\n  headers: {\n    'user-agent': 'rx-get/1.0 (+https://github.com/ericadamski/rx-get)',\n  },\n}).subscribe({\n  next({ status, json, text }) {\n    console.log(status);\n    console.log(json());\n  },\n});\n\n// GraphQL POST request\nget('https://api.github.com/graphql', {\n  method: 'POST',\n  headers: {\n    'content-type': 'application/json',\n    authorization: `Bearer ${token}`,\n  },\n  body: JSON.stringify({\n    query: /* GraphQL */ `\n      {\n        user(login: \"ericadamski\") {\n          repositories(last: 5) {\n            nodes {\n              name\n            }\n          }\n        }\n      }\n    `,\n  }),\n}).subscribe({\n  next(response) {\n    console.log(response.json());\n  },\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericadamski%2Frx-get","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericadamski%2Frx-get","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericadamski%2Frx-get/lists"}