{"id":31725420,"url":"https://github.com/cijiugechu/persona-http","last_synced_at":"2025-10-09T05:43:30.215Z","repository":{"id":317552677,"uuid":"1067910349","full_name":"cijiugechu/persona-http","owner":"cijiugechu","description":"A blazing-fast HTTP client with TLS fingerprinting for Node.js","archived":false,"fork":false,"pushed_at":"2025-10-05T08:01:58.000Z","size":197,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-05T08:33:23.511Z","etag":null,"topics":["client","fingerprint","http","napi-rs","tls-fingerprinting"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/cijiugechu.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,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-10-01T15:07:56.000Z","updated_at":"2025-10-05T08:02:00.000Z","dependencies_parsed_at":"2025-10-05T08:33:30.645Z","dependency_job_id":"a14a6f23-afc3-4124-8765-8aa7fbc849dd","html_url":"https://github.com/cijiugechu/persona-http","commit_stats":null,"previous_names":["cijiugechu/rnet-node","cijiugechu/nitai","cijiugechu/persona-http"],"tags_count":2,"template":false,"template_full_name":"napi-rs/package-template-pnpm","purl":"pkg:github/cijiugechu/persona-http","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cijiugechu%2Fpersona-http","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cijiugechu%2Fpersona-http/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cijiugechu%2Fpersona-http/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cijiugechu%2Fpersona-http/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cijiugechu","download_url":"https://codeload.github.com/cijiugechu/persona-http/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cijiugechu%2Fpersona-http/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000751,"owners_count":26082932,"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-10-09T02:00:07.460Z","response_time":59,"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":["client","fingerprint","http","napi-rs","tls-fingerprinting"],"created_at":"2025-10-09T05:43:26.515Z","updated_at":"2025-10-09T05:43:30.209Z","avatar_url":"https://github.com/cijiugechu.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# persona-http\n\n![CI](https://github.com/cijiugechu/persona-http/workflows/CI/badge.svg)\n\nA blazing-fast HTTP client with TLS fingerprinting for Node.js. Native Rust bindings via napi-rs.\n\nBased on [rnet](https://github.com/0x676e67/rnet) - the original Python implementation.\n\n## Installation\n\n```bash\nnpm install persona-http\n```\n\n## Usage\n\n### Simple GET request\n\n```typescript\nimport { get } from 'persona-http'\n\nconst response = await get('https://example.com')\nconst body = await response.text()\n```\n\n### Client with browser emulation\n\n```typescript\nimport { Client } from 'persona-http'\n\nconst client = new Client({\n  emulation: 'chrome_133',\n})\n\nconst response = await client.get('https://google.com')\nconst body = await response.text()\n```\n\n### Override emulation per request\n\n```typescript\nconst client = new Client({ emulation: 'chrome_105' })\n\n// Override with different preset\nconst response = await client.get(url, { emulation: 'chrome_101' })\n\n// Skip client hint headers\nconst response2 = await client.get(url, {\n  emulation: { preset: 'chrome_105', skipHeaders: true },\n})\n```\n\n## Platform Support\n\n| Platform      | Architectures   | Node.js |\n| ------------- | --------------- | ------- |\n| macOS         | x64, arm64      | 20, 22  |\n| Windows       | x64, x86, arm64 | 20, 22  |\n| Linux (glibc) | x64, arm64      | 20, 22  |\n| Linux (musl)  | x64, arm64      | 20, 22  |\n| FreeBSD       | x64             | 20, 22  |\n| Android       | arm64, armv7    | -       |\n\n## Development\n\nRequirements:\n\n- Rust (latest stable)\n- Node.js 20+\n- pnpm\n\nBuild and test:\n\n```bash\npnpm install\npnpm build\npnpm test\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcijiugechu%2Fpersona-http","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcijiugechu%2Fpersona-http","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcijiugechu%2Fpersona-http/lists"}