{"id":17032388,"url":"https://github.com/abians/pdf-make-previewer","last_synced_at":"2026-02-16T18:35:26.293Z","repository":{"id":257811320,"uuid":"868071356","full_name":"AbianS/pdf-make-previewer","owner":"AbianS","description":"CLI and library to visualize your PDF generation in real-time.","archived":false,"fork":false,"pushed_at":"2025-02-12T03:39:29.000Z","size":527,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-06T19:37:17.440Z","etag":null,"topics":["pdf","pdf-make-viewer","pdf-viewer","pdfmake","pdfmake-library","pdfmake-viewer","pdfmake-viewer-js","viewer"],"latest_commit_sha":null,"homepage":"https://pdf-make-preview.vercel.app","language":"TypeScript","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/AbianS.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,"zenodo":null}},"created_at":"2024-10-05T12:02:00.000Z","updated_at":"2024-12-19T08:33:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"12ceaca8-3d50-472a-99fe-eda57e31c67c","html_url":"https://github.com/AbianS/pdf-make-previewer","commit_stats":null,"previous_names":["abians/pdf-make-preview"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/AbianS/pdf-make-previewer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbianS%2Fpdf-make-previewer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbianS%2Fpdf-make-previewer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbianS%2Fpdf-make-previewer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbianS%2Fpdf-make-previewer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AbianS","download_url":"https://codeload.github.com/AbianS/pdf-make-previewer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbianS%2Fpdf-make-previewer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29514730,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T17:46:34.542Z","status":"ssl_error","status_checked_at":"2026-02-16T17:46:30.907Z","response_time":115,"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":["pdf","pdf-make-viewer","pdf-viewer","pdfmake","pdfmake-library","pdfmake-viewer","pdfmake-viewer-js","viewer"],"created_at":"2024-10-14T08:28:18.270Z","updated_at":"2026-02-16T18:35:26.265Z","avatar_url":"https://github.com/AbianS.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n\tPDF Make Previewer\u003c/br\u003e\n\t\u003ca href=\"https://www.npmjs.org/package/pdf-make-previewer\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/pdf-make-previewer.svg?style=flat\" alt=\"npm\"\u003e\u003c/a\u003e \u003ca href=\"https://travis-ci.org/developit/pdf-make-previewer\"\u003e\u003cimg src=\"https://travis-ci.org/developit/pdf-make-previewer.svg?branch=master\" alt=\"travis\"\u003e\u003c/a\u003e \u003ca href=\"https://licenses.dev/npm/pdf-make-previewer\"\u003e\u003cimg src=\"https://licenses.dev/b/npm/pdf-make-previewer\" alt=\"licenses\" /\u003e\u003c/a\u003e\n\u003c/h1\u003e\n\u003cp align=\"center\"\u003eCLI and library to \u003cb\u003evisualize your PDF generation in real-time\u003c/b\u003e.\u003c/p\u003e\n\n\n## ✨ Features\n\n- 📄 **Real-time PDF Preview:** Visualize PDF changes as you modify your generation logic without needing to regenerate files manually.\n- 🛠 **Easy CLI Setup:** Quickly configure and preview your PDFs using the CLI.\n- ⚙️ **Customizable Config:** Define your PDF generation logic in a dedicated config file.\n- 🛠 **Lightweight:** Simple and focused tool for PDF previewing during development.\n\n## 📚 Documentation\n\nFor more information on how to use pdf-make-previewer, check out the [documentation](https://pdf-make-preview.vercel.app/).\n\n## 🚀 Quick Start\n\nRun the following command to set up pdf-make-previewer in your project:\n\n```bash\nnpx pdf-make-previewer init\n```\n\nThis will guide you through the setup process and generate a configuration file for your project.\n\n## 📄 Configuration\n\nIn the configuration file, import your PDF generation logic. Here’s an example:\n\n```ts\n// pdf-preview.config.ts\n\nimport type { PdfPreviewerConfig } from \"pdf-make-previewer\"\nimport { generatePDF } from './your-pdf-functions';\n\nconst config: PdfPreviewerConfig = {\n  renderPdfPreview: () =\u003e generatePDF({name: 'John Doe', age: 30}),\n}\n\nexport default config\n```\n\n## 🚀 Run the Preview\n\nTo start using pdf-make-previewer, run:\n\n```bash\nnpm run preview\n```\n\nThis will open a local server where you can instantly preview any changes made to your PDF generation logic. Make your edits, save the file, and the preview will automatically update in real time. 🔄✨\n\n## 🤝 Contributions\n\nContributions are welcome. If you find an issue or have an idea to improve react-component-screenshot, feel free to open an issue or submit a pull request. 🚀\n\n## 📜 License\n\nLicensed as MIT open source. 📜","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabians%2Fpdf-make-previewer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabians%2Fpdf-make-previewer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabians%2Fpdf-make-previewer/lists"}