{"id":13506722,"url":"https://github.com/hex-digital/nuxt-intercom","last_synced_at":"2025-04-11T01:31:17.820Z","repository":{"id":40843742,"uuid":"248591561","full_name":"hex-digital/nuxt-intercom","owner":"hex-digital","description":"Integrate Intercom into your Nuxt app","archived":false,"fork":false,"pushed_at":"2024-01-16T09:05:32.000Z","size":1448,"stargazers_count":16,"open_issues_count":21,"forks_count":8,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-25T07:02:05.854Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/hex-digital.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}},"created_at":"2020-03-19T19:49:24.000Z","updated_at":"2024-03-26T08:52:12.000Z","dependencies_parsed_at":"2024-06-21T15:44:36.543Z","dependency_job_id":"9e3e8ef2-646b-49d9-a435-6f8362fccaf0","html_url":"https://github.com/hex-digital/nuxt-intercom","commit_stats":{"total_commits":27,"total_committers":3,"mean_commits":9.0,"dds":"0.14814814814814814","last_synced_commit":"d17894d7c8b27dd675ff7f2eee0d5f6438243e2e"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hex-digital%2Fnuxt-intercom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hex-digital%2Fnuxt-intercom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hex-digital%2Fnuxt-intercom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hex-digital%2Fnuxt-intercom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hex-digital","download_url":"https://codeload.github.com/hex-digital/nuxt-intercom/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248325112,"owners_count":21084870,"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-08-01T01:00:56.259Z","updated_at":"2025-04-11T01:31:12.810Z","avatar_url":"https://github.com/hex-digital.png","language":"JavaScript","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# nuxt-intercom\n\n[![npm version][npm-version-src]][npm-version-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![Circle CI][circle-ci-src]][circle-ci-href]\n[![Codecov][codecov-src]][codecov-href]\n[![License][license-src]][license-href]\n\n\u003e This module is for Nuxt 2 only. For a Nuxt 3 version, please see https://github.com/devonik/nuxt-3-intercom\n\n[🚀 **Demo Site available here**](https://nuxt-intercom.netlify.com)\n\n[📖 **Release Notes**](./CHANGELOG.md)\n\n## Setup\n\n1. Add `@hexdigital/nuxt-intercom` dependency to your project\n\n```bash\nyarn add @hexdigital/nuxt-intercom # or npm install @hexdigital/nuxt-intercom\n```\n\nAdd `@hexdigital/nuxt-intercom` to the buildModules section of nuxt.config.js\n\n```js\n{\n  buildModules: [\n    '@hexdigital/nuxt-intercom',\n  ],\n  intercom: {\n    appId: 'XXXXXXXXXX',\n  },\n}\n```\n\n## Options\nDefaults:\n\n```js\nconst defaults = {\n  appId: null, // Intercom ID\n  autoBoot: true, // True to boot messenger widget and show UI on page load, false to allow manually booting later\n  debug: false, // True to show debug messages in the console, useful for development, false to not show them\n\n  config: {}, // Object to specify messenger attributes to configure when booting. see https://developers.intercom.com/installing-intercom/docs/javascript-api-attributes-objects#section-messenger-attributes\n\n  scriptId: 'intercom-script', // String to identfy the script tag, for vue-meta\n  scriptDefer: false, // True to defer loading intercom widget javascript until page loads, false to async load it in document flow\n\n  updateOnPageRoute: true // True to call intercom's 'update' method on route change, false to not do this\n};\n```\n\n## Usage\n\n## Development\n\n1. Clone this repository\n2. Install devDependencies using `yarn install`\n3. Start development server using `yarn dev` or `INTERCOM_ID=\u003cyour intercom id\u003e yarn dev` if you want to provide customer INTERCOM_ID.\n\n## License\n[MIT License](https://github.com/hex-digital/nuxt-intercom/blob/master/LICENSE)\n\nCopyright (c) Hex Digital\n\n\u003c!-- Badges --\u003e\n[npm-version-src]: https://img.shields.io/npm/v/@hexdigital/nuxt-intercom/latest.svg?style=flat-square\n[npm-version-href]: https://npmjs.com/package/@hexdigital/nuxt-intercom\n\n[npm-downloads-src]: https://img.shields.io/npm/dt/@hexdigital/nuxt-intercom.svg?style=flat-square\n[npm-downloads-href]: https://npmjs.com/package/@hexdigital/nuxt-intercom\n\n[circle-ci-src]: https://img.shields.io/circleci/project/github/hex-digital/nuxt-intercom.svg?style=flat-square\n[circle-ci-href]: https://circleci.com/gh/hex-digital/nuxt-intercom\n\n[codecov-src]: https://img.shields.io/codecov/c/github/hex-digital/nuxt-intercom.svg?style=flat-square\n[codecov-href]: https://codecov.io/gh/hex-digital/nuxt-intercom\n\n[license-src]: https://img.shields.io/npm/l/@hexdigital/nuxt-intercom.svg?style=flat-square\n[license-href]: https://npmjs.com/package/@hexdigital/nuxt-intercom\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhex-digital%2Fnuxt-intercom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhex-digital%2Fnuxt-intercom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhex-digital%2Fnuxt-intercom/lists"}