{"id":42026087,"url":"https://github.com/pleaseai/nuxt-notion-starter-kit","last_synced_at":"2026-01-26T04:09:11.477Z","repository":{"id":329099462,"uuid":"1118044161","full_name":"pleaseai/nuxt-notion-starter-kit","owner":"pleaseai","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-18T13:34:19.000Z","size":359,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-20T22:40:36.531Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://nuxt-notion-starter-kit-docs.vercel.app","language":"Vue","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/pleaseai.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":null,"dco":null,"cla":null}},"created_at":"2025-12-17T07:21:58.000Z","updated_at":"2025-12-18T11:42:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pleaseai/nuxt-notion-starter-kit","commit_stats":null,"previous_names":["pleaseai/nuxt-notion-starter-kit"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/pleaseai/nuxt-notion-starter-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fnuxt-notion-starter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fnuxt-notion-starter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fnuxt-notion-starter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fnuxt-notion-starter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pleaseai","download_url":"https://codeload.github.com/pleaseai/nuxt-notion-starter-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fnuxt-notion-starter-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28766485,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T03:54:34.369Z","status":"ssl_error","status_checked_at":"2026-01-26T03:54:33.031Z","response_time":59,"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":[],"created_at":"2026-01-26T04:09:10.946Z","updated_at":"2026-01-26T04:09:11.469Z","avatar_url":"https://github.com/pleaseai.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nuxt Notion Starter Kit\n\nA Nuxt 4 starter kit for building websites powered by Notion as a CMS.\n\n## Overview\n\nThis project is a Nuxt-based implementation inspired by [nextjs-notion-starter-kit](https://github.com/transitive-bullshit/nextjs-notion-starter-kit). It provides:\n\n- **@pleaseai/notion-vue**: A Vue 3 component library for rendering Notion content\n- **@pleaseai/notion-nuxt-layer**: A Nuxt layer that provides full Notion page functionality\n- **apps/docs**: A Nuxt 4 application that extends the layer\n\n## Features\n\n- Full Notion block support (text, headers, lists, images, videos, code, etc.)\n- Dark mode support\n- Responsive design\n- Hybrid SSG + ISR rendering with Nuxt\n- Search functionality\n- SEO optimized\n\n## Project Structure\n\n```\n├── packages/\n│   ├── notion-vue/              # Vue 3 Notion renderer package\n│   │   ├── src/\n│   │   │   ├── components/      # Vue components\n│   │   │   ├── composables/     # Vue composables\n│   │   │   ├── types/           # TypeScript types\n│   │   │   ├── utils.ts         # Utility functions\n│   │   │   └── styles.css       # Notion styles\n│   │   └── package.json\n│   │\n│   └── notion-nuxt-layer/       # Nuxt layer package\n│       ├── app/\n│       │   └── pages/           # Default pages\n│       ├── server/\n│       │   ├── api/             # API routes\n│       │   └── utils/           # Server utilities\n│       ├── nuxt.config.ts       # Layer configuration\n│       └── package.json\n│\n└── apps/\n    └── docs/                    # Nuxt 4 application\n        ├── app/\n        │   ├── layouts/         # Nuxt layouts\n        │   └── assets/          # CSS and assets\n        ├── site.config.ts       # Site configuration\n        └── nuxt.config.ts       # Nuxt configuration\n```\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 20+\n- Bun 1.0+\n\n### Installation\n\n```bash\nbun install\n```\n\n### Configuration\n\n1. Copy the example configuration:\n   ```bash\n   cp apps/docs/site.config.ts.example apps/docs/site.config.ts\n   ```\n\n2. Update `site.config.ts` with your Notion page ID and site details:\n   ```typescript\n   const config: SiteConfig = {\n     rootNotionPageId: 'your-notion-page-id',\n     name: 'Your Site Name',\n     domain: 'your-domain.com',\n     author: 'Your Name',\n     description: 'Your site description',\n     // ...\n   }\n   ```\n\n3. (Optional) Set your Notion API token as an environment variable:\n   ```bash\n   export NOTION_TOKEN=your_notion_integration_token\n   ```\n\n### Development\n\n```bash\nbun dev\n```\n\n### Build\n\n```bash\nbun run build\n```\n\n### Preview Production Build\n\n```bash\nbun run preview\n```\n\n## Supported Block Types\n\nThe Notion renderer supports the following block types:\n\n- Text blocks (paragraph, headings H1-H3)\n- Lists (bulleted, numbered, to-do)\n- Quote and callout\n- Divider\n- Toggle\n- Columns\n- Code blocks\n- Images\n- Videos (including YouTube embeds)\n- Bookmarks\n- Embeds\n- Page links\n- Collection views (simple table rendering)\n\n## Customization\n\n### Styling\n\nThe package includes default Notion styles from `@pleaseai/notion-vue/styles.css`. You can customize the appearance by:\n\n1. Overriding CSS variables in your global CSS\n2. Adding custom styles that target `.notion-*` classes\n\n### Components\n\nYou can provide custom component overrides through the `components` prop on `NotionRenderer`:\n\n```vue\n\u003cNotionRenderer\n  :record-map=\"recordMap\"\n  :components=\"{\n    Code: MyCustomCodeBlock,\n    Image: MyCustomImage,\n  }\"\n/\u003e\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpleaseai%2Fnuxt-notion-starter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpleaseai%2Fnuxt-notion-starter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpleaseai%2Fnuxt-notion-starter-kit/lists"}