{"id":42671159,"url":"https://github.com/calibr/ckeditor-yami-build","last_synced_at":"2026-01-29T11:00:06.176Z","repository":{"id":42820350,"uuid":"267707543","full_name":"calibr/ckeditor-yami-build","owner":"calibr","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-07T18:38:20.000Z","size":2966,"stargazers_count":0,"open_issues_count":19,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-08-20T23:52:20.376Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/calibr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2020-05-28T22:13:57.000Z","updated_at":"2023-08-20T23:52:20.377Z","dependencies_parsed_at":"2023-02-07T21:01:39.037Z","dependency_job_id":null,"html_url":"https://github.com/calibr/ckeditor-yami-build","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/calibr/ckeditor-yami-build","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calibr%2Fckeditor-yami-build","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calibr%2Fckeditor-yami-build/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calibr%2Fckeditor-yami-build/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calibr%2Fckeditor-yami-build/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/calibr","download_url":"https://codeload.github.com/calibr/ckeditor-yami-build/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calibr%2Fckeditor-yami-build/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28876674,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T10:31:27.438Z","status":"ssl_error","status_checked_at":"2026-01-29T10:31:01.017Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-29T11:00:02.845Z","updated_at":"2026-01-29T11:00:06.092Z","avatar_url":"https://github.com/calibr.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"CKEditor 5 classic editor build\n========================================\n\n[![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-build-classic.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic)\n[![Dependency Status](https://david-dm.org/ckeditor/ckeditor5-build-classic/status.svg)](https://david-dm.org/ckeditor/ckeditor5-build-classic)\n[![devDependency Status](https://david-dm.org/ckeditor/ckeditor5-build-classic/dev-status.svg)](https://david-dm.org/ckeditor/ckeditor5-build-classic?type=dev)\n\nThe classic editor build for CKEditor 5. Read more about the [classic editor build](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/overview.html#classic-editor) and see the [demo](https://ckeditor.com/docs/ckeditor5/latest/examples/builds/classic-editor.html).\n\n![CKEditor 5 classic editor build screenshot](https://c.cksource.com/a/1/img/npm/ckeditor5-build-classic.png)\n\n## Documentation\n\nSee:\n\n* [Installation](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/installation.html) for how to install this package and what it contains.\n* [Basic API](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/basic-api.html) for how to create an editor and interact with it.\n* [Configuration](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/configuration.html) for how to configure the editor.\n* [Creating custom builds](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/development/custom-builds.html) for how to customize the build (configure and rebuild the editor bundle).\n\n## Quick start\n\nFirst, install the build from npm:\n\n```bash\nnpm install --save @ckeditor/ckeditor5-build-classic\n```\n\nAnd use it in your website:\n\n```html\n\u003cdiv id=\"editor\"\u003e\n\t\u003cp\u003eThis is the editor content.\u003c/p\u003e\n\u003c/div\u003e\n\u003cscript src=\"./node_modules/@ckeditor/ckeditor5-build-classic/build/ckeditor.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n\tClassicEditor\n\t\t.create( document.querySelector( '#editor' ) )\n\t\t.then( editor =\u003e {\n\t\t\twindow.editor = editor;\n\t\t} )\n\t\t.catch( error =\u003e {\n\t\t\tconsole.error( 'There was a problem initializing the editor.', error );\n\t\t} );\n\u003c/script\u003e\n```\n\nOr in your JavaScript application:\n\n```js\nimport ClassicEditor from '@ckeditor/ckeditor5-build-classic';\n\n// Or using the CommonJS version:\n// const ClassicEditor = require( '@ckeditor/ckeditor5-build-classic' );\n\nClassicEditor\n\t.create( document.querySelector( '#editor' ) )\n\t.then( editor =\u003e {\n\t\twindow.editor = editor;\n\t} )\n\t.catch( error =\u003e {\n\t\tconsole.error( 'There was a problem initializing the editor.', error );\n\t} );\n```\n\n**Note:** If you are planning to integrate CKEditor 5 deep into your application, it is actually more convenient and recommended to install and import the source modules directly (like it happens in `ckeditor.js`). Read more in the [Advanced setup guide](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/advanced-setup.html).\n\n## License\n\nLicensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalibr%2Fckeditor-yami-build","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcalibr%2Fckeditor-yami-build","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalibr%2Fckeditor-yami-build/lists"}