{"id":27941930,"url":"https://github.com/spacetesla/zennote","last_synced_at":"2025-07-31T04:06:15.834Z","repository":{"id":287130989,"uuid":"961942266","full_name":"SpaceTesla/zennote","owner":"SpaceTesla","description":"Zennote turns messy AI markdown into beautiful shareable notes.","archived":false,"fork":false,"pushed_at":"2025-04-11T05:25:40.000Z","size":140,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T11:40:01.527Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://zennote.shivanshkaran.tech/","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/SpaceTesla.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}},"created_at":"2025-04-07T12:09:57.000Z","updated_at":"2025-04-11T05:25:43.000Z","dependencies_parsed_at":"2025-04-10T05:38:40.621Z","dependency_job_id":"642e60df-ea47-442c-85a6-a3152498b347","html_url":"https://github.com/SpaceTesla/zennote","commit_stats":null,"previous_names":["spacetesla/zennote"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SpaceTesla/zennote","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceTesla%2Fzennote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceTesla%2Fzennote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceTesla%2Fzennote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceTesla%2Fzennote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpaceTesla","download_url":"https://codeload.github.com/SpaceTesla/zennote/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceTesla%2Fzennote/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267985252,"owners_count":24176413,"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-07-31T02:00:08.723Z","response_time":66,"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":[],"created_at":"2025-05-07T11:24:05.749Z","updated_at":"2025-07-31T04:06:15.780Z","avatar_url":"https://github.com/SpaceTesla.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧘 Zennote - Paste. Beautify. Share.\n\n*Zennote turns messy AI markdown into beautiful, shareable notes — instantly.*\n\n---\n\n## 🌟 What is Zennote?\n\nZennote is a markdown beautifier built for the modern age of AI and instant sharing.  \nIt takes unstructured markdown (often copied from AI tools), beautifies it with a clean design, and gives you a shareable URL — all in seconds.\n\nPerfect for:\n- Sharing AI responses or dev notes\n- Creating clean, shareable docs from markdown\n- Personal knowledge management\n\n---\n\n## 🛠️ Tech Stack\n\n| Layer      | Tech                            |\n|------------|---------------------------------|\n| Frontend   | [Next.js 15](https://nextjs.org/) + Tailwind CSS |\n| Backend    | [Cloudflare Workers](https://workers.cloudflare.com/) (TypeScript) |\n| Storage    | [Cloudflare R2](https://developers.cloudflare.com/r2/) for markdown blobs |\n| DB         | [Cloudflare D1 / R1](https://developers.cloudflare.com/d1/) for metadata |\n| Deployment | Cloudflare Pages \u0026 Workers via Wrangler |\n\n---\n\n## 🧭 Project Structure\n\n```\nzennote/\n├── apps/\n│   ├── backend/       # Cloudflare Worker logic\n│   │   ├── src/       # Worker source code (index.ts)\n│   │   └── migrations/ # DB migrations (D1/R1)\n│   └── frontend/      # Next.js app\n│       └── src/       # App Router setup, components, libs, config\n├── .gitignore\n├── LICENSE\n└── README.md\n```\n\n---\n\n## 🚀 Deployment \u0026 Hosting\n\nZennote uses **Cloudflare’s full stack** for hosting:\n\n- **Frontend** is deployed using [Cloudflare Pages](https://pages.cloudflare.com/)\n- **Backend API** is a Cloudflare Worker deployed via `wrangler`\n- **R2** stores the actual markdown files (blobs)\n- **D1 (R1)** stores metadata like slugs, titles, and timestamps\n\nYou can find `wrangler.toml` in `apps/backend/`.\n\n---\n\n## 🧪 Local Development\n\n```bash\n# Clone the repo\ngit clone https://github.com/your-username/zennote.git\ncd zennote\n\n# Frontend setup\ncd apps/frontend\nnpm install\nnpm run dev\n\n# Backend setup (requires wrangler)\ncd ../backend\nnpm install\nwrangler dev\n```\n\n\u003e Make sure to set up `.env` for frontend \u0026 bind R2/D1 vars in `wrangler.toml`.\n\n---\n\n## 🧑‍💻 Contributing\n\nContributions are welcome! Here’s how to get started:\n\n1. 🍴 Fork this repo\n2. 👯 Clone your fork\n3. 💡 Create a feature branch: `git checkout -b my-feature`\n4. 🧪 Make changes \u0026 test them\n5. 📬 Open a PR with a clear title and description\n\n### Guidelines\n\n- Follow existing project structure\n- Format code using Prettier (`.prettierrc`)\n- Keep commits clean and meaningful\n- Don’t commit secrets or `.env` files\n\n---\n\n## 💬 Feedback \u0026 Ideas\n\nOpen an issue or start a discussion! Whether it's a bug, feature idea, or random thought — we'd love to hear it.\n\n---\n\n## 📄 License\n\nMIT License.  \nFeel free to use, remix, or extend Zennote. Just don’t be evil 🙃\n\n---\n\nMade with ☕ + 💭 by [Shivansh Karan](https://shivanshkaran.tech)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspacetesla%2Fzennote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspacetesla%2Fzennote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspacetesla%2Fzennote/lists"}