{"id":21060198,"url":"https://github.com/enkot/nuxt-open-fetch","last_synced_at":"2025-05-15T22:01:49.729Z","repository":{"id":195830514,"uuid":"693523686","full_name":"enkot/nuxt-open-fetch","owner":"enkot","description":"Generate zero-overhead, typed OpenAPI clients for Nuxt.","archived":false,"fork":false,"pushed_at":"2024-11-01T00:29:50.000Z","size":3843,"stargazers_count":171,"open_issues_count":21,"forks_count":17,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-01T21:13:44.479Z","etag":null,"topics":["api","composable","fetch","nuxt","nuxt3","openapi","query"],"latest_commit_sha":null,"homepage":"https://nuxt-open-fetch.vercel.app","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/enkot.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2023-09-19T07:43:34.000Z","updated_at":"2025-03-30T07:15:35.000Z","dependencies_parsed_at":"2023-09-19T20:03:15.160Z","dependency_job_id":"d768205a-80b8-4d27-bf8a-13adbb7388a5","html_url":"https://github.com/enkot/nuxt-open-fetch","commit_stats":{"total_commits":187,"total_committers":9,"mean_commits":20.77777777777778,"dds":"0.12299465240641716","last_synced_commit":"67355e27874c80ba37a2c694e7ff1523877f8c19"},"previous_names":["enkot/nuxt-open-fetch"],"tags_count":41,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/enkot%2Fnuxt-open-fetch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/enkot%2Fnuxt-open-fetch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/enkot%2Fnuxt-open-fetch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/enkot%2Fnuxt-open-fetch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/enkot","download_url":"https://codeload.github.com/enkot/nuxt-open-fetch/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247801175,"owners_count":20998339,"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","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":["api","composable","fetch","nuxt","nuxt3","openapi","query"],"created_at":"2024-11-19T17:16:00.208Z","updated_at":"2025-04-08T08:16:06.799Z","avatar_url":"https://github.com/enkot.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"\u003c!--\nGet your module up and running quickly.\n\nFind and replace all on all files (CMD+SHIFT+F):\n- Name: My Module\n- Package name: my-module\n- Description: My new Nuxt module\n--\u003e\n[![Nuxt Open Fetch](./docs/public/cover.png)](https://nuxt-open-fetch.vercel.app/)\n\n# Nuxt Open Fetch\n\n[![npm version][npm-version-src]][npm-version-href]\n[![License][license-src]][license-href]\n[![Nuxt][nuxt-src]][nuxt-href]\n\nGenerate zero-overhead, 100% typed OpenAPI clients for Nuxt.\n\nIn other words - `$fetch` and `useFetch` on steroids. Uses awesome [openapi-typescript](https://github.com/drwpow/openapi-typescript) generator under the hood.\n\n\u003e ⚠️ APIs are subject to change.\n\u003e All ideas/suggestions are welcome! :)\n\n- [✨ \u0026nbsp;Release Notes](/CHANGELOG.md)\n- [📖 \u0026nbsp;Read the documentation](https://nuxt-open-fetch.vercel.app/)\n\u003c!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) --\u003e\n\u003c!-- - [📖 \u0026nbsp;Documentation](https://example.com) --\u003e\n\n## Features\n\n\u003c!-- Highlight some of the features your module provide here --\u003e\n- 🍹 \u0026nbsp;No manual typing of your API\n- 🍋 \u0026nbsp;Supports OpenAPI 3.0 and 3.1 (including advanced features like [discriminators](https://spec.openapis.org/oas/v3.1.0#discriminator-object))\n- 🌲 \u0026nbsp;Uses runtime-free types that outperform old-school codegen\n- 📡 \u0026nbsp;Load schemas from YAML or JSON, locally or remotely\n- 🥞 \u0026nbsp;Works with Nuxt [Layers](https://nuxt.com/docs/getting-started/layers)\n\n## Quick Setup\n\n1. Add `nuxt-open-fetch` dependency to your project\n\n```bash\n# Using pnpm\npnpm add -D nuxt-open-fetch\n\n# Using yarn\nyarn add --dev nuxt-open-fetch\n\n# Using npm\nnpm install --save-dev nuxt-open-fetch\n```\n\n2. Add `nuxt-open-fetch` to the `modules` section of `nuxt.config.ts`\n\n```js\nexport default defineNuxtConfig({\n  modules: [\n    'nuxt-open-fetch'\n  ]\n})\n```\n\nThat's it! You can now use `nuxt-open-fetch` in your Nuxt app ✨\n\n## Development\n\n```bash\n# Install dependencies\npnpm install\n\n# Generate type stubs\npnpm dev:prepare\n\n# Develop with the playground\npnpm dev\n\n# Build the playground\npnpm dev:build\n\n# Run ESLint\npnpm lint\n\n# Run Vitest\npnpm test\npnpm test:watch\n\n# Release new version\npnpm release\n```\n\n## License\n\nMade with 💚\n\nPublished under the [MIT License](./LICENCE).\n\n\u003c!-- Badges --\u003e\n[npm-version-src]: https://img.shields.io/npm/v/nuxt-open-fetch/latest.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-version-href]: https://npmjs.com/package/nuxt-open-fetch\n\n[license-src]: https://img.shields.io/npm/l/nuxt-open-fetch.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[license-href]: https://npmjs.com/package/nuxt-open-fetch\n\n[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js\n[nuxt-href]: https://nuxt.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenkot%2Fnuxt-open-fetch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fenkot%2Fnuxt-open-fetch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenkot%2Fnuxt-open-fetch/lists"}