{"id":15046033,"url":"https://github.com/waptik/epubgen","last_synced_at":"2025-10-08T19:20:11.745Z","repository":{"id":58182926,"uuid":"529990191","full_name":"waptik/epubgen","owner":"waptik","description":"This is a deno module based on https://github.com/cpiber/epub-gen-memory to generate epub files","archived":false,"fork":false,"pushed_at":"2024-05-26T03:56:17.000Z","size":1302,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T04:39:58.783Z","etag":null,"topics":["deno","epub","epub-generation","epub3"],"latest_commit_sha":null,"homepage":"https://deno.land/x/epubgen","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/waptik.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":"2022-08-28T22:02:50.000Z","updated_at":"2024-04-28T01:55:09.000Z","dependencies_parsed_at":"2024-09-25T01:59:35.700Z","dependency_job_id":"56df061d-aed5-4e66-b9e7-bc2fbc9e4909","html_url":"https://github.com/waptik/epubgen","commit_stats":{"total_commits":49,"total_committers":3,"mean_commits":"16.333333333333332","dds":0.1428571428571429,"last_synced_commit":"9b8e0159d7d99c89c26ba534dca5c405db53e961"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/waptik/epubgen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waptik%2Fepubgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waptik%2Fepubgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waptik%2Fepubgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waptik%2Fepubgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/waptik","download_url":"https://codeload.github.com/waptik/epubgen/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waptik%2Fepubgen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278752989,"owners_count":26039901,"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-07T02:00:06.786Z","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":["deno","epub","epub-generation","epub3"],"created_at":"2024-09-24T20:52:36.934Z","updated_at":"2025-10-08T19:20:11.728Z","avatar_url":"https://github.com/waptik.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deno Epub generator\n\nA wrapper around [epub-gen-memory](https://github.com/cpiber/epub-gen-memory)\nfor deno.\n\n## Usage:\n\nCreate epub file:\n\n```ts\nimport epub from \"https://deno.land/x/epubgen/mod.ts\";\n\nepub(options, chapters).then(\n  (content) =\u003e console.log(\"Ebook Generated Successfully!\"),\n  (err) =\u003e console.error(\"Failed to generate Ebook because of \", err),\n);\n```\n\n## Example\n\n```ts\nimport epub from \"https://deno.land/x/epubgen/mod.ts\";\nimport * as path from \"https://deno.land/std@0.159.0/path/mod.ts\";\nconst options = {\n  title: \"Book Title\",\n  description: \"This is a test book\",\n  author: \"John\",\n  // cover: path.toFileUrl(path.resolve(\"cover.jpg\")).href,\n  cover:\n    \"http://orig10.deviantart.net/e272/f/2013/255/0/0/alice_in_wonderland_book_cover_by_pannucabaguana-d6m003p.jpg\",\n};\n\nepub(options, [\n  {\n    title: \"Chapter 1\",\n    content: \"\u003cp\u003eHello world!\u003c/p\u003e\",\n  },\n]).then(\n  (content) =\u003e {\n    Deno.writeFileSync(\"book.epub\", content);\n  },\n  (err) =\u003e console.error(\"Failed to generate Ebook because of \", err),\n);\n```\n\n## Epub Check Online\n\n\u003chttps://draft2digital.com/book/epubcheck/upload\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaptik%2Fepubgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwaptik%2Fepubgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaptik%2Fepubgen/lists"}