{"id":19977420,"url":"https://github.com/hypernym-studio/nuxt-anime","last_synced_at":"2026-03-07T03:02:00.408Z","repository":{"id":65972404,"uuid":"317286633","full_name":"hypernym-studio/nuxt-anime","owner":"hypernym-studio","description":"Anime module for Nuxt.","archived":false,"fork":false,"pushed_at":"2024-04-02T15:14:21.000Z","size":595,"stargazers_count":106,"open_issues_count":0,"forks_count":6,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-11-23T07:24:20.841Z","etag":null,"topics":["anime","animejs","javascript-animations","nuxt","nuxt-animations","nuxt-anime","nuxt-animejs","nuxt-module"],"latest_commit_sha":null,"homepage":"","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/hypernym-studio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/codeowners","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://revolut.me/ivodolenc","https://paypal.me/ivodolenc"]}},"created_at":"2020-11-30T16:46:11.000Z","updated_at":"2025-11-09T05:55:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"08653497-48cd-49d2-a478-335d7da61065","html_url":"https://github.com/hypernym-studio/nuxt-anime","commit_stats":null,"previous_names":["ivodolenc/nuxt-animejs"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/hypernym-studio/nuxt-anime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fnuxt-anime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fnuxt-anime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fnuxt-anime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fnuxt-anime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hypernym-studio","download_url":"https://codeload.github.com/hypernym-studio/nuxt-anime/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fnuxt-anime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30206339,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"online","status_checked_at":"2026-03-07T02:00:06.765Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["anime","animejs","javascript-animations","nuxt","nuxt-animations","nuxt-anime","nuxt-animejs","nuxt-module"],"created_at":"2024-11-13T03:27:59.296Z","updated_at":"2026-03-07T03:02:00.371Z","avatar_url":"https://github.com/hypernym-studio.png","language":"TypeScript","funding_links":["https://revolut.me/ivodolenc","https://paypal.me/ivodolenc"],"categories":["TypeScript"],"sub_categories":[],"readme":"# Nuxt Anime Module\n\nAnime module for Nuxt.\n\n## Features\n\n- Helps you integrate the Anime.js animation library\n- Provides the main _anime_ helper globally\n- Supports custom composables\n- Zero-config setup ready to go\n- TypeScript friendly\n- Super easy to use\n\n## Quick Start\n\n1. Install `@hypernym/nuxt-anime` to your project\n\n```sh\nnpm i -D @hypernym/nuxt-anime\n\n# or via nuxi\nnpx nuxi@latest module add animejs\n```\n\n2. Enable the module in the main config file\n\n```ts\n// nuxt.config.ts\n\n{\n  modules: ['@hypernym/nuxt-anime']\n}\n```\n\nThat's it! Start developing your app!\n\n## Module\n\nThe module comes with a _zero-config_ setup so after activation it automatically adds the Anime.js core and it is globally available without additional settings.\n\n```html\n\u003c!-- layout.vue | page.vue | component.vue --\u003e\n\n\u003ctemplate\u003e\n  \u003cdiv\u003e\n    \u003ch1 class=\"title\"\u003eNuxt Anime\u003c/h1\u003e\n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript setup lang=\"ts\"\u003e\n  const { $anime } = useNuxtApp()\n\n  onMounted(() =\u003e {\n    $anime({ targets: '.title', translateX: 250, duration: 800 })\n  })\n\u003c/script\u003e\n```\n\n## Options\n\nNuxt Anime Module is optimized and supports Nuxt 3 with TypeScript. It also improves the development experience with detailed descriptions, examples and code auto-completion.\n\n```ts\n// nuxt.config.ts\n\n{\n  modules: ['@hypernym/nuxt-anime'],\n\n  anime: {\n    // Module options\n  }\n}\n```\n\n## Provide\n\n- Type: `boolean`\n- Default: `true`\n\nProvides the main `$anime` helper globally.\n\n```ts\n// nuxt.config.ts\n\n{\n  anime: {\n    provide: true\n  }\n}\n```\n\n**Available globally**\n\n```ts\nconst { $anime } = useNuxtApp()\n\n$anime({ targets: '.class', translateX: 250, duration: 800 })\n```\n\n## Composables\n\n- Type: `boolean`\n- Default: `undefined`\n\nSpecifies custom composables.\n\nIf enabled, allows the use of custom composables.\n\n```ts\n// nuxt.config.ts\n\n{\n  anime: {\n    composables: true\n  }\n}\n```\n\n### useAnime\n\nProvides the main `anime` function as custom composable.\n\n```html\n\u003cscript setup lang=\"ts\"\u003e\n  onMounted(() =\u003e {\n    useAnime({ targets: '.class', translateX: 250, duration: 800 })\n  })\n\u003c/script\u003e\n```\n\n```ts\n// Explicit import (optional)\nimport { useAnime } from '#anime'\n```\n\n## Auto Import\n\n- Type: `boolean`\n- Default: `true`\n\nSpecifies the `auto-import` feature.\n\nIf enabled, the composables will be available globally so there is no need to import them manually.\n\nSince this is an opinionated feature, you can disable global `auto-import` and use explicit import only where you need it.\n\nWorks only if the `composables: true` option is enabled.\n\n```ts\n// nuxt.config.ts\n\n{\n  anime: {\n    autoImport: false\n  }\n}\n```\n\n## Community\n\nFeel free to use the official [discussions](https://github.com/hypernym-studio/nuxt-anime/discussions) for any additional questions.\n\n## License\n\n### Anime.js Library\n\nMore details about Anime.js license can be found in the \u003ca href=\"https://github.com/juliangarnier/anime\"\u003eofficial\u003c/a\u003e repository.\n\n### Nuxt Anime Module\n\nDeveloped in 🇭🇷 Croatia\n\nReleased under the [MIT](LICENSE.txt) license.\n\n© Hypernym Studio\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypernym-studio%2Fnuxt-anime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhypernym-studio%2Fnuxt-anime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypernym-studio%2Fnuxt-anime/lists"}