{"id":21512507,"url":"https://github.com/gradely/gradely-ckeditor","last_synced_at":"2026-02-16T20:35:38.434Z","repository":{"id":57199557,"uuid":"384070675","full_name":"gradely/gradely-ckeditor","owner":"gradely","description":"This is a modified ckeditor used in gradely","archived":false,"fork":false,"pushed_at":"2021-11-09T10:43:35.000Z","size":14227,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-10-14T08:14:23.875Z","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/gradely.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":"2021-07-08T09:25:38.000Z","updated_at":"2021-11-09T20:01:14.000Z","dependencies_parsed_at":"2022-09-16T15:01:03.969Z","dependency_job_id":null,"html_url":"https://github.com/gradely/gradely-ckeditor","commit_stats":null,"previous_names":["gradelyng/gradely-ckeditor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gradely/gradely-ckeditor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gradely%2Fgradely-ckeditor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gradely%2Fgradely-ckeditor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gradely%2Fgradely-ckeditor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gradely%2Fgradely-ckeditor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gradely","download_url":"https://codeload.github.com/gradely/gradely-ckeditor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gradely%2Fgradely-ckeditor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29517617,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T18:37:19.720Z","status":"ssl_error","status_checked_at":"2026-02-16T18:36:46.920Z","response_time":115,"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":"2024-11-23T22:37:07.257Z","updated_at":"2026-02-16T20:35:38.409Z","avatar_url":"https://github.com/gradely.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%2Fgradely%2Fgradely-ckeditor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgradely%2Fgradely-ckeditor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgradely%2Fgradely-ckeditor/lists"}