{"id":18805745,"url":"https://github.com/mskian/deno-cheerio-js","last_synced_at":"2026-05-09T02:17:07.219Z","repository":{"id":57071247,"uuid":"526938255","full_name":"mskian/deno-cheerio-js","owner":"mskian","description":"Cheerio - Porting Cheerio Node Module To Deno using esm.sh","archived":false,"fork":false,"pushed_at":"2022-08-20T16:29:11.000Z","size":5,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-27T09:16:50.257Z","etag":null,"topics":["cheerio","cheerio-js","cheeriojs","deno","deno-module","denoland","javascript","nestland","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/mskian.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}},"created_at":"2022-08-20T13:44:01.000Z","updated_at":"2022-11-16T18:39:29.000Z","dependencies_parsed_at":"2022-08-24T14:54:26.080Z","dependency_job_id":null,"html_url":"https://github.com/mskian/deno-cheerio-js","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mskian/deno-cheerio-js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mskian%2Fdeno-cheerio-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mskian%2Fdeno-cheerio-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mskian%2Fdeno-cheerio-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mskian%2Fdeno-cheerio-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mskian","download_url":"https://codeload.github.com/mskian/deno-cheerio-js/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mskian%2Fdeno-cheerio-js/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000782,"owners_count":26082851,"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-08T02:00:06.501Z","response_time":56,"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":["cheerio","cheerio-js","cheeriojs","deno","deno-module","denoland","javascript","nestland","typescript"],"created_at":"2024-11-07T22:44:52.596Z","updated_at":"2025-10-08T22:11:36.640Z","avatar_url":"https://github.com/mskian.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deno Cheerio\n\n[![Test Scrape](https://github.com/mskian/deno-cheerio-js/actions/workflows/test.yml/badge.svg)](https://github.com/mskian/deno-cheerio-js/actions/workflows/test.yml)\n![Deno](https://img.shields.io/badge/Deno-464647?style=for-the-badge\u0026logo=deno\u0026logoColor=white)\n\nCheerio - Porting Cheerio Node Module To Deno using `esm.sh`\n\n## Prerequisites\n\n- Deno on your System \u003chttps://deno.land/#installation\u003e\n\n## Usage\n\n- Cheerio Full Docs and usage - \u003chttps://cheerio.js.org/\u003e\n\n```js\nimport { cheerio } from \"https://deno.land/x/denocheerio/mod.ts\";\n\nfetch(\n  \"https://notes.santhoshveer.com/\",\n)\n  .then((result) =\u003e result.text())\n  .then((html) =\u003e {\n    const $ = cheerio.load(html);\n    const title = $('meta[property=\"og:title\"]').attr(\"content\") ||\n      $(\"title\").text() || $('meta[name=\"title\"]').attr(\"content\");\n    const description = $('meta[property=\"og:description\"]').attr(\"content\") ||\n      $('meta[name=\"description\"]').attr(\"content\");\n    console.log(title);\n    console.log(description);\n  }).catch((error) =\u003e {\n    console.log(error);\n  });\n```\n\n## Testing\n\n```sh\ndeno run --allow-net --allow-read test.ts\n\nor\n\ndeno task test\n```\n\n## Credits\n\n- cheerio Npm Module - \u003chttps://github.com/cheeriojs/cheerio\u003e\n\n## LICENSE\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmskian%2Fdeno-cheerio-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmskian%2Fdeno-cheerio-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmskian%2Fdeno-cheerio-js/lists"}