{"id":25463149,"url":"https://github.com/postedin/ember-ckeditor","last_synced_at":"2026-02-21T20:36:13.056Z","repository":{"id":36467123,"uuid":"222992428","full_name":"postedin/ember-ckeditor","owner":"postedin","description":"CKEditor 5 component for Ember JS.","archived":false,"fork":false,"pushed_at":"2023-03-15T08:24:54.000Z","size":2276,"stargazers_count":8,"open_issues_count":4,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-17T03:38:21.837Z","etag":null,"topics":["ckeditor","ckeditor5","ember"],"latest_commit_sha":null,"homepage":"","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/postedin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-11-20T17:33:22.000Z","updated_at":"2024-06-14T23:21:39.000Z","dependencies_parsed_at":"2023-02-18T19:01:15.957Z","dependency_job_id":null,"html_url":"https://github.com/postedin/ember-ckeditor","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postedin%2Fember-ckeditor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postedin%2Fember-ckeditor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postedin%2Fember-ckeditor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postedin%2Fember-ckeditor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/postedin","download_url":"https://codeload.github.com/postedin/ember-ckeditor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239340496,"owners_count":19622705,"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":["ckeditor","ckeditor5","ember"],"created_at":"2025-02-18T06:19:52.370Z","updated_at":"2026-02-21T20:36:08.019Z","avatar_url":"https://github.com/postedin.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CKEditor 5 component for Ember.js\n\n@postedin/ember-ckeditor\n\n**Un**official [CKEditor 5](https://ckeditor.com/ckeditor-5/) rich text editor component for Ember.js.\n\n## Why we made it\n\n[Postedin](https://www.postedin.com) is a content creation platform. A good rich text editor is at the core of our product. Our platform uses [Ember.js](https://emberjs.com) so we naturally need a good integration with CKEditor 5 which we consider to be the best editor for the browser by a long shot.\n\n## What is next\n\n### For 1.0.0\n\n- write a proper readme with proper documentation\n- write a proper contributing guide\n- some basic tests\n\n### Wishlist\n\n- hopefully get changes we want into CKEditor instead of running custom builds or extending things\n- full extensive testing\n- autocomplete plugin (similar to gmail suggestions when writing an email)\n- sources plugin (add a source that we can list at the bottom of the document)\n\n## Compatibility\n\n- Ember.js v3.24 or above\n- Ember CLI v3.24 or above\n- Node.js v12 or above\n\n## Installation\n\n```\nember install @postedin/ember-ckeditor\n```\n\n## Usage\n\nTODO: proper detailed usage\n\nYou need to have a build to use with this component. We use a combined build, so we can use multiple different custom versions (https://github.com/postedin/ckeditor5-build-combined). You can use any build like the official classic (https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic).\n\nYou will need to import the build and use it in the component.\n\nFor example, make an `Editor` component. We added a basic option and it will update the value.\n\n```js\n// components/editor.js\nimport Component from '@glimmer/component';\nimport { action } from '@ember/object';\nimport ClassicEditor from '@ckeditor/ckeditor5-build-classic';\n\nexport default class EditorComponent extends Component {\n\tclassicEditor = ClassicEditor;\n\tvalue = '';\n\toptions = {\n\t\tlink: {\n\t\t\taddTargetToExternalLinks: true,\n\t\t},\n\t};\n\n\t@action\n\thandleInput(value) {\n\t\tthis.value = value;\n\n\t\tif (this.args.onChanged) {\n\t\t\tthis.args.onChanged(value); // for consuming this component and getting the updated value\n\t\t}\n\t}\n}\n```\n\n```html\n\u003c!-- components/editor.hbs --\u003e\n\u003cCKEditor\n\t@editor=\"{{this.classicEditor}}\"\n\t@value=\"{{this.value}}\"\n\t@options=\"{{this.options}}\"\n\t@onInput=\"{{this.handleInput}}\"\n/\u003e\n```\n\nTODO: explain getting languages working\n\n## Contributing\n\nTODO: more details\n\nSee the [Contributing](CONTRIBUTING.md) guide for details.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpostedin%2Fember-ckeditor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpostedin%2Fember-ckeditor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpostedin%2Fember-ckeditor/lists"}