{"id":24189296,"url":"https://github.com/lovefields/dragoneditor","last_synced_at":"2026-02-24T01:26:41.432Z","repository":{"id":42373400,"uuid":"202847881","full_name":"lovefields/dragonEditor","owner":"lovefields","description":"DragonEditor is WYSIWYG editor in Nuxt3.","archived":false,"fork":false,"pushed_at":"2024-10-21T02:42:14.000Z","size":2811,"stargazers_count":11,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-22T23:46:09.640Z","etag":null,"topics":["custom","eidtor","javascript","korean","nuxt","nuxt3","wysiwyg","wysiwyg-editor"],"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/lovefields.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":"2019-08-17T07:04:01.000Z","updated_at":"2024-10-21T02:52:38.000Z","dependencies_parsed_at":"2024-01-29T03:17:01.296Z","dependency_job_id":"92496780-d956-4d83-a230-ec11b279b322","html_url":"https://github.com/lovefields/dragonEditor","commit_stats":{"total_commits":358,"total_committers":5,"mean_commits":71.6,"dds":0.03910614525139666,"last_synced_commit":"0fc3f23abdc9aa252e9fe0e72a4405cc9a8e2705"},"previous_names":[],"tags_count":46,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovefields%2FdragonEditor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovefields%2FdragonEditor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovefields%2FdragonEditor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovefields%2FdragonEditor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lovefields","download_url":"https://codeload.github.com/lovefields/dragonEditor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233754766,"owners_count":18725059,"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":["custom","eidtor","javascript","korean","nuxt","nuxt3","wysiwyg","wysiwyg-editor"],"created_at":"2025-01-13T14:24:22.321Z","updated_at":"2026-01-12T11:28:47.486Z","avatar_url":"https://github.com/lovefields.png","language":"TypeScript","funding_links":["https://github.com/sponsors/lovefields"],"categories":[],"sub_categories":[],"readme":"[stars-src]: https://img.shields.io/github/stars/lovefields/dragonEditor\n[stars-href]: https://github.com/lovefields/dragonEditor/stargazers\n[issues-src]: https://img.shields.io/github/issues/lovefields/dragonEditor\n[issues-href]: https://github.com/lovefields/dragonEditor/issues\n[forks-src]: https://img.shields.io/github/forks/lovefields/dragonEditor\n[forks-href]: https://github.com/lovefields/dragonEditor/forks\n[language-src]: https://img.shields.io/github/languages/top/lovefields/dragonEditor\n[language-href]: https://github.com/lovefields/dragonEditor/\n[npm-version-src]: https://img.shields.io/npm/v/dragon-editor/latest.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-version-href]: https://www.npmjs.com/package/dragon-editor\n[npm-downloads-src]: https://img.shields.io/npm/dm/dragon-editor.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-downloads-href]: https://www.npmjs.com/package/dragon-editor\n[license-src]: https://img.shields.io/npm/l/dragon-editor\n[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js\n[nuxt-href]: https://nuxt.com\n[sponsors-src]: https://img.shields.io/github/sponsors/lovefields\n[sponsors-href]: https://github.com/sponsors/lovefields\n\n[![stars-src]][stars-href]\n[![forks-src]][forks-href]\n[![language-src]][language-href]\n[![issues-src]][issues-href]\n[![npm-version-src]][npm-version-href]\n[![npm-downloads-src]][npm-downloads-href]\n![NPM][license-src]\n[![sponsors-src]][sponsors-href]\n[![Nuxt][nuxt-src]][nuxt-href]\n\n# DragonEditor\n\nI just made the DragonEditor because I needed the WYSIWYG Editor to write on my [blog](https://dico.me).\n\nThis module support only Nuxt.\n\n# Font\n\nIf you use Codeblock. I recommented use `Inconsolata` font. [(link)](https://fonts.google.com/specimen/Inconsolata?query=Inconsolata)\n\n## Install\n\n```shell\nnpm i dragon-editor\n# or\nyarn add dragon-editor\n# or\nbun add dragon-editor\n```\n\n## Using\n\nFirst. Set module\n\n```typescript\nexport default defineNuxtConfig({\n    modules: [\"dragon-editor\"],\n});\n```\n\nSecond. Use Component\n\n```html\n\u003ctemplate\u003e\n    \u003cdiv class=\"editor-area\"\u003e\n        \u003cDragonEditor v-model=\"contentData\" /\u003e\n    \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript setup lang=\"ts\"\u003e\n    const contentData = ref\u003cDEContentData\u003e([]); // Do not modify the value after binding under any circumstances.\n\u003c/script\u003e\n```\n\nDone!\n\n## View Page\n\n```html\n\u003ctemplate\u003e\n    \u003cdiv class=\"view-area\"\u003e\n        \u003cDragonEditorViewer :content=\"data\" /\u003e\n    \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript setup lang=\"ts\"\u003e\n    const data = ref\u003cDEContentData\u003e([]);\n\u003c/script\u003e\n```\n\nMore information is [here](https://lovefields.github.io/dragonEditor-doc/)\n\n# Sponsors\n\nSupport this project by becoming a sponsor. [GitHub Sponsors](https://github.com/sponsors/lovefields)\n\n\u003cdiv align=\"center\"\u003e\n    \u003ca href=\"https://github.com/kyu91\"\u003e\n        \u003cimg src=\"https://github.com/kyu91.png\" width=\"50\" title=\"kyu91\" /\u003e\n    \u003c/a\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flovefields%2Fdragoneditor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flovefields%2Fdragoneditor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flovefields%2Fdragoneditor/lists"}