{"id":15873780,"url":"https://github.com/modbender/nuxt-disqus","last_synced_at":"2025-03-16T04:30:44.241Z","repository":{"id":180200237,"uuid":"664692520","full_name":"modbender/nuxt-disqus","owner":"modbender","description":"Disqus Comments plugin for Nuxt 3","archived":false,"fork":false,"pushed_at":"2024-09-28T18:34:18.000Z","size":263,"stargazers_count":6,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-27T05:02:47.237Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://nuxt.com/modules/disqus","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/modbender.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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},"funding":{"github":["modbender"],"patreon":"modbender","open_collective":null,"ko_fi":"modbender","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"custom":["paypal.me/modbender"]}},"created_at":"2023-07-10T14:33:59.000Z","updated_at":"2024-10-18T12:48:36.000Z","dependencies_parsed_at":"2024-06-14T16:09:58.760Z","dependency_job_id":"88809096-7ebf-4d59-a733-44f236035045","html_url":"https://github.com/modbender/nuxt-disqus","commit_stats":null,"previous_names":["modbender/nuxt-disqus"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modbender%2Fnuxt-disqus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modbender%2Fnuxt-disqus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modbender%2Fnuxt-disqus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modbender%2Fnuxt-disqus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/modbender","download_url":"https://codeload.github.com/modbender/nuxt-disqus/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243802943,"owners_count":20350316,"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-10-06T01:06:29.601Z","updated_at":"2025-03-16T04:30:43.844Z","avatar_url":"https://github.com/modbender.png","language":"TypeScript","funding_links":["https://github.com/sponsors/modbender","https://patreon.com/modbender","https://ko-fi.com/modbender","paypal.me/modbender"],"categories":[],"sub_categories":[],"readme":"# Disqus for Nuxt 3\n\n[![npm version][npm-version-src]][npm-version-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![License][license-src]][license-href]\n[![Nuxt][nuxt-src]][nuxt-href]\n\nInstantly add Disqus Comments to your posts or pages using this package designed to work perfectly with Nuxt 3.\n\nNuxt Disqus provides a wrapper for [vue3-disqus](https://github.com/modbender/vue3-disqus) to be used with Nuxt 3\n\n\u003c!-- - [✨ \u0026nbsp;Release Notes](/CHANGELOG.md) --\u003e\n  \u003c!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/nuxt-disqus?file=playground%2Fapp.vue) --\u003e\n  \u003c!-- - [📖 \u0026nbsp;Documentation](https://example.com) --\u003e\n\n## Features\n\n- 🔆Easy to integrate\n- ⚡️Instantly usable components `DisqusComments` and `DisqusCount`\n\n## Quick Setup\n\n1. Add `nuxt-disqus` dependency to your project\n\n   ```bash\n   npx nuxi@latest module add disqus\n   ```\n\n2. Add `nuxt-disqus` to the `modules` section of `nuxt.config.ts`\n\n   ```js\n   export default defineNuxtConfig({\n     modules: [\"nuxt-disqus\"],\n     disqus: {\n       shortname: \"your-disqus-shortname\",\n     },\n   });\n   ```\n\n3. Place `DisqusComments` anywhere in your app to render Disqus Comment thread for particular `identifier`\n\n   ```jsx\n   \u003cDisqusComments identifier=\"/blog/1\" /\u003e\n   ```\n\n4. Place `DisqusCount` anywhere in your app to render Disqus Comment Count for particular `identifier`\n\n   ```jsx\n   \u003cDisqusCount identifier=\"/blog/1\" /\u003e\n   ```\n\n   Example Output for `DisqusCount` will be:\n   ```xml\n   99 Comments\n   ```\n\nThat's it! You can now use Disqus in your Nuxt app ✨\n\n## Development\n\n```bash\n# Install dependencies\nyarn install\n\n# Generate type stubs\nyarn run dev:prepare\n\n# Develop with the playground\nyarn run dev\n\n# Build the playground\nyarn run dev:build\n\n# Run ESLint\nyarn run lint\n\n# Run Vitest\nyarn run test\nyarn run test:watch\n\n# Release new version\nyarn run release\n```\n\n\u003c!-- Badges --\u003e\n\n[npm-version-src]: https://img.shields.io/npm/v/nuxt-disqus/latest.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-version-href]: https://npmjs.com/package/nuxt-disqus\n[npm-downloads-src]: https://img.shields.io/npm/dm/nuxt-disqus.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-downloads-href]: https://npmjs.com/package/nuxt-disqus\n[license-src]: https://img.shields.io/npm/l/nuxt-disqus.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[license-href]: https://npmjs.com/package/nuxt-disqus\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%2Fmodbender%2Fnuxt-disqus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmodbender%2Fnuxt-disqus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmodbender%2Fnuxt-disqus/lists"}