{"id":27732363,"url":"https://github.com/norvancc/vue-typewritter","last_synced_at":"2026-05-02T06:33:14.136Z","repository":{"id":238858817,"uuid":"796702131","full_name":"norvancc/vue-typewritter","owner":"norvancc","description":"A typewritter effect for vue3 and typescript.","archived":false,"fork":false,"pushed_at":"2024-05-09T02:55:13.000Z","size":222,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-28T11:19:04.474Z","etag":null,"topics":["typewriter","typewriter-effect","typewritter","vue","vue3"],"latest_commit_sha":null,"homepage":"http://typewritter.norvan.cc","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/norvancc.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}},"created_at":"2024-05-06T13:18:15.000Z","updated_at":"2024-05-09T02:55:16.000Z","dependencies_parsed_at":"2024-05-09T03:25:08.706Z","dependency_job_id":"ad9a48d5-6248-4231-8fc0-caae3b7bf3c9","html_url":"https://github.com/norvancc/vue-typewritter","commit_stats":null,"previous_names":["norvancc/typewritter","norvancc/vue-typewritter"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norvancc%2Fvue-typewritter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norvancc%2Fvue-typewritter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norvancc%2Fvue-typewritter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norvancc%2Fvue-typewritter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/norvancc","download_url":"https://codeload.github.com/norvancc/vue-typewritter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251302780,"owners_count":21567601,"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":["typewriter","typewriter-effect","typewritter","vue","vue3"],"created_at":"2025-04-28T11:19:07.200Z","updated_at":"2026-05-02T06:33:09.086Z","avatar_url":"https://github.com/norvancc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/norvancc/typewritter#gh-light-mode-only\"\u003e\n  \u003cimg src=\"https://github.com/norvancc/typewritter/raw/main/public/logo_light.png#gh-light-mode-only\" alt=\"Typewritter - A typewritter effect for vue3 and typescript\" width=\"300\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://github.com/norvancc/typewritter#gh-dark-mode-only\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/norvancc/typewritter/main/public/logo_dark.png#gh-dark-mode-only\" alt=\"Typewritter - A typewritter effect for vue3 and typescript\" width=\"300\"\u003e\n\u003c/a\u003e\n\u003cbr\u003e\n A typewritter effect for vue3 and typescript\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e \n\u003ca href=\"https://www.npmjs.com/package/vue-typewritter\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/npm-v0.0.5-blue\" alt=\"Typewritter - A typewritter effect for vue3 and typescript\" alt=\"NPM version\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://github.com/norvancc/vue-typewritter?tab=MIT-1-ov-file\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/license-MIT-yellow\" alt=\"Typewritter - A typewritter effect for vue3 and typescript\" alt=\"LICENSE\"\u003e\n\u003c/a\u003e\n\u003ca href=\"http://typewritter.norvan.cc\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/docs \u0026 demo-green\" alt=\"Typewritter - A typewritter effect for vue3 and typescript\" alt=\"Docs \u0026 Demo\"\u003e\n\u003c/a\u003e\n\u003c/p\u003e\n\n## 🚀 Features\n\n- 📝 Pure string input support\n- \u003cimg src=\"https://raw.githubusercontent.com/norvancc/typewritter/main/public/vue.svg\" width=\"14\"\u003e Vue component support\n- \u003cimg src=\"https://raw.githubusercontent.com/norvancc/typewritter/main/public/tsx.svg\" width=\"14\"\u003e TSX/JSX grammer support\n- 🔫 Customizable styles for each step\n- 🚀 Each step supports custom speed\n- 🚅 Chain call support\n\n## 🦄 Usage\n\n```ts\n\u003ctemplate\u003e\n  \u003cdiv id=\"typewritter\"\u003e\u003c/div\u003e\n\u003c/template\u003e\n\u003cscript setup lang=\"tsx\"\u003e\nimport { Typewriter } from 'vue-typewritter';\n\nconst typewriter = new Typewriter('#typewritter');\nonMounted(() =\u003e {\n  nextTick(() =\u003e {\n    typewriter.setText('Hello World!');\n  });\n});\n\u003c/script\u003e\n```\n\n## 📦 Install\n\n\u003e 🎩 From v1.0, it works for Vue 2 \u0026 3\n\n```bash\nnpm i vue-typewriter\n```\n\n## 📄 License\n\n[MIT License](https://github.com/norvancc/typewritter/blob/main/LICENSE) © 2024-PRESENT [Norvan CC](https://norvan.cc)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnorvancc%2Fvue-typewritter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnorvancc%2Fvue-typewritter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnorvancc%2Fvue-typewritter/lists"}