{"id":13880653,"url":"https://github.com/StellateHQ/fuse","last_synced_at":"2025-07-16T17:30:50.077Z","repository":{"id":210244845,"uuid":"713762158","full_name":"StellateHQ/fuse","owner":"StellateHQ","description":"Fuse: The fastest way to build and query great APIs with TypeScript","archived":false,"fork":false,"pushed_at":"2025-03-22T15:38:21.000Z","size":21517,"stargazers_count":564,"open_issues_count":19,"forks_count":13,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-07-11T02:05:20.369Z","etag":null,"topics":["api","graphql","nextjs","typescript"],"latest_commit_sha":null,"homepage":"https://fusedata.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/StellateHQ.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":"2023-11-03T07:26:17.000Z","updated_at":"2025-07-06T10:13:34.000Z","dependencies_parsed_at":"2023-12-22T10:29:55.493Z","dependency_job_id":"f8bad5bf-5cd1-44c2-b75f-4ab17294448a","html_url":"https://github.com/StellateHQ/fuse","commit_stats":null,"previous_names":["stellatehq/fuse.js","stellatehq/fuse"],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/StellateHQ/fuse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellateHQ%2Ffuse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellateHQ%2Ffuse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellateHQ%2Ffuse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellateHQ%2Ffuse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StellateHQ","download_url":"https://codeload.github.com/StellateHQ/fuse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellateHQ%2Ffuse/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264740552,"owners_count":23656783,"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","graphql","nextjs","typescript"],"created_at":"2024-08-06T08:03:21.285Z","updated_at":"2025-07-16T17:30:48.905Z","avatar_url":"https://github.com/StellateHQ.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Fuse\n\n![Fuse: End-to-end typesafe data fetching for frontend teams at scale](https://images.ctfassets.net/yq1dddfl2vc7/6EDzUh3emBY3uQqoxulmPA/c738d8fbae3e412e38cadee598f3e9db/twitter_header.png)\n\n# Getting Started\n\nWhen you are in the root of your app run the following command. This will\ninstall all the packages and generate the files you need.\n\n```sh\nnpx create-fuse-app\n```\n\nThen, run `npx fuse dev` and your API will be running at `localhost:4000/graphql`!\n\n\u003e If you are **using Next.js, you don't need to manually run `fuse dev`**. `create-fuse-app` will add a Next.js plugin to your `next.config.js/ts/mjs`` and an API route at `/api/fuse` for you to access your API. ([learn more](https://fusedata.dev/docs/setting-fuse-up-manually/nextjs))\n\n## Querying your data layer\n\n```tsx\nimport { graphql } from '@/fuse'\nimport { execute } from '@/fuse/server'\n\nconst UserQuery = graphql(`\n  query User($id: ID!) {\n    user(id: $id) {\n      id\n      name\n    }\n  }\n`)\n\nexport default async function Page() {\n  const result = await execute({\n    query: UserQuery,\n    variables: { id: '1' },\n  })\n\n  return \u003cp\u003eWelcome {result.data?.user?.name}\u003c/p\u003e\n}\n```\n\n# [Docs](https://fusedata.dev/docs)\n\n**Read [the documentation](https://fusedata.dev/docs) for more information about using Fuse**.\n\nQuicklinks to some of the most-visited pages:\n\n- [Getting started](https://fusedata.dev/docs)\n- [Querying your API (client)](https://fusedata.dev/docs/client)\n- [Building your API (server)](https://fusedata.dev/docs/server/queries-and-mutations)\n- [Deploying your API (server)](https://fusedata.dev/docs/deployment)\n- [The Fuse Method](https://fusedata.dev/docs/fuse-method)\n\n# License\n\nLicensed under the MIT License, Copyright © 2023-present Stellate, Inc.\n\nSee LICENSE for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FStellateHQ%2Ffuse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FStellateHQ%2Ffuse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FStellateHQ%2Ffuse/lists"}