{"id":29692533,"url":"https://github.com/productdevbook/nitro-graphql","last_synced_at":"2026-03-16T01:25:35.959Z","repository":{"id":305203055,"uuid":"1016788905","full_name":"productdevbook/nitro-graphql","owner":"productdevbook","description":"A standalone Nitro module that integrates GraphQL servers into any Nitro application with automatic type   generation, file watching, and seamless framework integration.","archived":false,"fork":false,"pushed_at":"2026-01-29T07:36:42.000Z","size":3182,"stargazers_count":120,"open_issues_count":9,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-29T22:56:34.323Z","etag":null,"topics":["apollo-server","drizzle","file-watching","graphql","graphql-federation","graphql-server","graphql-subgraph","graphql-yoga","nitro","nuxt","nuxt5","react-graphql","schema-validation","standardschema","typescript","zod"],"latest_commit_sha":null,"homepage":"https://graphql.silgi.dev","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/productdevbook.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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},"funding":{"github":["productdevbook"]}},"created_at":"2025-07-09T14:23:21.000Z","updated_at":"2026-01-29T07:36:43.000Z","dependencies_parsed_at":"2025-07-18T22:20:33.790Z","dependency_job_id":"7d58f019-9044-49b9-9a26-ae2cd70d06fe","html_url":"https://github.com/productdevbook/nitro-graphql","commit_stats":null,"previous_names":["productdevbook/nitro-graphql"],"tags_count":52,"template":false,"template_full_name":null,"purl":"pkg:github/productdevbook/nitro-graphql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fnitro-graphql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fnitro-graphql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fnitro-graphql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fnitro-graphql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/productdevbook","download_url":"https://codeload.github.com/productdevbook/nitro-graphql/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fnitro-graphql/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30557913,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-15T23:30:23.986Z","status":"ssl_error","status_checked_at":"2026-03-15T23:28:43.564Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["apollo-server","drizzle","file-watching","graphql","graphql-federation","graphql-server","graphql-subgraph","graphql-yoga","nitro","nuxt","nuxt5","react-graphql","schema-validation","standardschema","typescript","zod"],"created_at":"2025-07-23T08:01:10.262Z","updated_at":"2026-03-16T01:25:35.940Z","avatar_url":"https://github.com/productdevbook.png","language":"TypeScript","funding_links":["https://github.com/sponsors/productdevbook"],"categories":["TypeScript","Starter Kits"],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cimg src=\"./.github/assets/logo.svg\" alt=\"Nitro GraphQL Logo\" width=\"120\" height=\"120\"\u003e\n\n# Nitro GraphQL\n\n[![npm version][npm-version-src]][npm-version-href]\n[![Beta Status][beta-src]][beta-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![Coverage][coverage-src]][coverage-href]\n[![License][license-src]][license-href]\n[![Documentation][docs-src]][docs-href]\n\n**The easiest way to add GraphQL to any Nitro application**\n\n[Documentation](https://nitro-graphql.pages.dev) | [Examples](./examples/) | [Playgrounds](./playgrounds/)\n\n\u003c/div\u003e\n\n\u003e [!IMPORTANT]\n\u003e **v2.0 Beta** - Nitro v3 / H3 v2 support. For v1.x (Nitro v2), see the [`v1` branch](https://github.com/productdevbook/nitro-graphql/tree/v1).\n\n## Quick Start\n\n```bash\nnpx nitro-graphql@beta init my-app -t nitro\n```\n\nAvailable templates: `nitro`, `vite`, `vite-react`, `vite-vue`, `drizzle-orm`, `better-auth`\n\n## Manual Installation\n\n```bash\npnpm add nitro-graphql@beta graphql-yoga graphql graphql-config\n```\n\n```ts\n// nitro.config.ts\nimport { defineConfig } from 'nitro'\nimport graphql from 'nitro-graphql'\n\nexport default defineConfig({\n  serverDir: './',\n  modules: [\n    graphql({\n      framework: 'graphql-yoga',\n      serverDir: './',\n    }),\n  ],\n})\n```\n\nSee the [documentation](https://nitro-graphql.pages.dev) for Nuxt and Vite setup.\n\n## Resources\n\n- [Documentation](https://nitro-graphql.pages.dev)\n- [Examples](./examples/) - Real-world integrations (Drizzle ORM, etc.)\n- [Playgrounds](./playgrounds/) - Development environments\n- [GitHub Issues](https://github.com/productdevbook/nitro-graphql/issues)\n\n## Sponsors\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://cdn.jsdelivr.net/gh/productdevbook/static/sponsors.svg\"\u003e\n    \u003cimg src='https://cdn.jsdelivr.net/gh/productdevbook/static/sponsors.svg?t=1721043966'/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## License\n\n[MIT](./LICENSE) License © 2023 [productdevbook](https://github.com/productdevbook)\n\n\u003c!-- Badges --\u003e\n[npm-version-src]: https://img.shields.io/npm/v/nitro-graphql?style=flat\u0026colorA=080f12\u0026colorB=1fa669\n[npm-version-href]: https://npmjs.com/package/nitro-graphql\n[npm-downloads-src]: https://img.shields.io/npm/dm/nitro-graphql?style=flat\u0026colorA=080f12\u0026colorB=1fa669\n[npm-downloads-href]: https://npmjs.com/package/nitro-graphql\n[license-src]: https://img.shields.io/github/license/productdevbook/nitro-graphql.svg?style=flat\u0026colorA=080f12\u0026colorB=1fa669\n[license-href]: https://github.com/productdevbook/nitro-graphql/blob/main/LICENSE\n[docs-src]: https://img.shields.io/badge/docs-read-blue?style=flat\u0026colorA=080f12\u0026colorB=1fa669\n[docs-href]: https://nitro-graphql.pages.dev\n[beta-src]: https://img.shields.io/npm/v/nitro-graphql/beta?style=flat\u0026logo=rocket\u0026logoColor=white\u0026label=beta\u0026color=7c3aed\u0026colorA=080f12\n[beta-href]: https://github.com/productdevbook/nitro-graphql/releases\n[coverage-src]: https://img.shields.io/badge/coverage-66%25-green?style=flat\u0026colorA=080f12\n[coverage-href]: https://github.com/productdevbook/nitro-graphql/actions/workflows/ci.yml\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproductdevbook%2Fnitro-graphql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproductdevbook%2Fnitro-graphql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproductdevbook%2Fnitro-graphql/lists"}