{"id":14964131,"url":"https://github.com/nuxt/telemetry","last_synced_at":"2025-05-14T18:07:28.360Z","repository":{"id":37022304,"uuid":"253531157","full_name":"nuxt/telemetry","owner":"nuxt","description":"Nuxt Telemetry","archived":false,"fork":false,"pushed_at":"2025-05-12T19:33:04.000Z","size":3363,"stargazers_count":239,"open_issues_count":8,"forks_count":25,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-05-12T20:46:55.992Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/nuxt.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-04-06T15:00:34.000Z","updated_at":"2025-05-12T19:31:51.000Z","dependencies_parsed_at":"2022-08-18T22:01:21.765Z","dependency_job_id":"42bd854e-ab2f-4e2c-8be0-105a9aadeb7b","html_url":"https://github.com/nuxt/telemetry","commit_stats":{"total_commits":252,"total_committers":20,"mean_commits":12.6,"dds":0.7261904761904762,"last_synced_commit":"a5a370154ab2870c909ba244ae19c28e72c0b83d"},"previous_names":[],"tags_count":69,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuxt%2Ftelemetry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuxt%2Ftelemetry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuxt%2Ftelemetry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuxt%2Ftelemetry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nuxt","download_url":"https://codeload.github.com/nuxt/telemetry/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254198515,"owners_count":22030966,"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":[],"created_at":"2024-09-24T13:32:36.943Z","updated_at":"2025-05-14T18:07:23.352Z","avatar_url":"https://github.com/nuxt.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Nuxt Telemetry Module\n\nNuxt collects anonymous telemetry data about general usage. This helps us to accurately gauge Nuxt feature usage and customization across all our users.\n\nThis program is optional. You will be asked on first time to get permission and you can always [opt-out](#opting-out) if you'd not like to share any information.\n\n## Why collecting Telemetry?\n\nNuxt has grown a lot from its [initial release](https://github.com/nuxt/nuxt.js/releases/tag/v0.2.0) (7 Nov 2016) and we keep listening to [community feedback](https://github.com/nuxt/nuxt.js/issues) to improve it.\n\nHowever, this manual process only collects feedback from a subset of users that take the time to fill the issue template and it may have different needs or use-case than you.\n\nNuxt Telemetry collects anonymous telemetry data about general usage. This helps us to accurately gauge feature usage and customization across all our users. This data will let us better understand how Nuxt is used globally, measuring improvements made (DX and performances) and their relevance.\n\n## Events\n\nWe collect multiple events:\n\n- Command invoked (`nuxt dev`, `nuxt build`, etc)\n- Versions of Nuxt and Node.js\n- General machine information (MacOS/Linux/Windows and if the command is run within CI, ci name)\n- Duration of the Webpack build and average size of the application, as well as the generation stats (when using `nuxt generate` or `nuxt export`)\n- Your project's *public dependencies* (Nuxt modules)\n\nYou can see the list of events in [lib/events](./src/events).\n\nExample of an event:\n\n```json\n{\n   \"name\": \"NUXT_PROJECT\",\n   \"payload\": {\n    \"type\": \"GIT\",\n    \"isSSR\": true,\n    \"target\": \"server\",\n    \"isTypescriptBuild\": false,\n    \"isTypescriptRuntime\": false,\n    \"isProgrammatic\": false,\n    \"packageManager\": \"npm\"\n   }\n}\n```\n\nTo display the exact data that will be sent, you can use `NUXT_TELEMETRY_DEBUG=1`.\n\n## Sensitive data\n\nWe take your privacy and our security very seriously.\n\nWe do not collect any metrics which may contain sensitive data.\n\nThis includes, but is not limited to: environment variables, file paths, contents of files, logs, or serialized JavaScript errors.\n\nThe data we collect is completely anonymous, not traceable to the source (using hash+seed), and only meaningful in aggregate form. No data we collect is personally identifiable or trackable.\n\n## Opting-out\n\nYou can disable Nuxt Telemetry for your project in several ways:\n\n1. Setting `telemetry: false` in your `nuxt.config`:\n\n```js\nexport default {\n  telemetry: false\n}\n```\n\n2. Using an environment variable:\n\n```bash\nNUXT_TELEMETRY_DISABLED=1\n```\n\n3. Using `npx @nuxt/telemetry disable`\n\n\u003c!-- TODO: npx nuxt telemetry  --\u003e\n\n```bash\nnpx @nuxt/telemetry [status|enable|disable] [-g,--global] [dir]\n```\n\n## Skip Prompt\n\nIf you encounter problems with the consent prompt and want to participate without being asked this question, you can set `telemetry: true` from `nuxt.config`:\n\n```js\nexport default {\n  telemetry: true\n}\n```\n\n## Thank you\n\nWe want to thank you for participating in this telemetry program to help us better understand how you use Nuxt to keep improving it 💚\n\n## Development\n\n- Run `yarn dev:prepare` to generate type stubs.\n- Use `yarn dev` to start [playground](./playground) in development mode.\n\n## License\n\n[MIT License](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuxt%2Ftelemetry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnuxt%2Ftelemetry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuxt%2Ftelemetry/lists"}