{"id":19311977,"url":"https://github.com/weblineindia/reactjs-ck-editor","last_synced_at":"2025-04-22T15:31:33.481Z","repository":{"id":57347623,"uuid":"282227230","full_name":"weblineindia/ReactJS-CK-Editor","owner":"weblineindia","description":"A simple, native and easy-to-use WYSIWYG / Rich Text editor built in Quill.js and React.js","archived":false,"fork":false,"pushed_at":"2024-04-29T05:30:46.000Z","size":435,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-06T02:16:36.263Z","etag":null,"topics":["ck-editor","ckeditor","quill-editor","react-ckeditor","react-components","react-demo","react-libraries","react-wysiwyg","reactjs","reactjs-ck-editor","reactjs-ckeditor","reactjs-components","reactjs-demo","reactjs-library","reactjs-wysiwyg","reusable-components","rich-text-editor","wysiwyg-editor","wysiwyg-js-editor"],"latest_commit_sha":null,"homepage":"https://www.weblineindia.com/software-development-resources.html","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/weblineindia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2020-07-24T13:28:50.000Z","updated_at":"2024-04-29T05:30:49.000Z","dependencies_parsed_at":"2024-04-29T06:32:48.846Z","dependency_job_id":"e765dee4-7a07-44ec-959f-24e240460d53","html_url":"https://github.com/weblineindia/ReactJS-CK-Editor","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReactJS-CK-Editor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReactJS-CK-Editor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReactJS-CK-Editor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReactJS-CK-Editor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/weblineindia","download_url":"https://codeload.github.com/weblineindia/ReactJS-CK-Editor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223900372,"owners_count":17222028,"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":["ck-editor","ckeditor","quill-editor","react-ckeditor","react-components","react-demo","react-libraries","react-wysiwyg","reactjs","reactjs-ck-editor","reactjs-ckeditor","reactjs-components","reactjs-demo","reactjs-library","reactjs-wysiwyg","reusable-components","rich-text-editor","wysiwyg-editor","wysiwyg-js-editor"],"created_at":"2024-11-10T00:31:49.362Z","updated_at":"2024-11-10T00:32:17.196Z","avatar_url":"https://github.com/weblineindia.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ReactJS - CKEditor / WYSIWYG Editor\n\nA simple, native and easy-to-use WYSIWYG / Rich Text editor built in Quill.js and React.js\n\n## Table of contents\n\n- [Browser Support](#browser-support)\n- [Demo](#demo)\n- [Getting started](#getting-started)\n- [Usage](#usage)\n- [Available Props](#available-props)\n- [Methods](#methods)\n- [Want to Contribute?](#want-to-contribute)\n- [Collection of Components](#collection-of-components)\n- [Changelog](#changelog)\n- [Credits](#credits)\n- [License](#license)\n- [Keywords](#Keywords)\n\n## Browser Support\n\n| ![Chrome](https://raw.github.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png) | ![Firefox](https://raw.github.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png) | ![Safari](https://raw.github.com/alrra/browser-logos/master/src/safari/safari_48x48.png) | ![Edge](https://raw.github.com/alrra/browser-logos/master/src/edge/edge_48x48.png) | ![IE](https://raw.github.com/alrra/browser-logos/master/src/archive/internet-explorer_9-11/internet-explorer_9-11_48x48.png) |\n| ---------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |\n| 83.0 ✔                                                                                   | 77.0 ✔                                                                                      | 13.1.1 ✔                                                                                 | 83.0 ✔                                                                             | 11.9 ✔                                                                                                                       |\n\n## Demo\n\n[![](editor.gif)](https://github.com/weblineindia/ReactJS-CK-Editor/editor.gif)\n\n## Getting started\n\nInstall the npm package:\n\n```bash\nnpm install react-weblineindia-ck-editor\n#OR\nyarn add react-weblineindia-ck-editor\n```\n\n## Usage\n\nUse the `\u003creact-weblineindia-ck-editor\u003e` component:\n\n```js\nimport React, { Component } from \"react\";\nimport Editor from \"react-weblineindia-ck-editor\";\nclass Test extends Component {\n  constructor(props) {\n    super(props);\n    this.state = {\n      editorHtml: \"\",\n    };\n  }\n\n  handleChange(html) {\n    this.setState({\n      editorHtml: html,\n    });\n  }\n\n  render() {\n    return (\n      \u003cdiv\u003e\n        \u003cEditor\n          onChange={this.handleChange.bind(this)}\n          value={this.state.editorHtml}\n          bounds=\".app\"\n          placeholder=\"Type Something\"\n        /\u003e\n      \u003c/div\u003e\n    );\n  }\n}\nexport default Test;\n\n```\n\n## Available Props\n\n| Name                  | Type    | Default                                              | Description                                                                            |\n| --------------------- | ------- | ---------------------------------------------------- | -------------------------------------------------------------------------------------- |\n| id                    | String  | quill-container                                      | Set the id (necessary if multiple editors in the same view)                            |\n| placeholder           | String  | -                                                    | Placeholder text for the editor                                                        |\n| value               | String  | -                                                    | Set value to the the content or data property you wish to bind it to                 |\n| modules             | object   |                                                    | Set modules    |\n| toolbar              | Array  |                                                   | Set toolbar   |\n| formats               | Array  |                                                   | Set formats   |\n\n## Methods\n\n| Name             | Parameters                   | Description                                                                         |\n| ---------------- | ---------------------------- | ----------------------------------------------------------------------------------- |\n| blur             | quill                        | Emitted on `blur` event                                                             |\n| focus            | quill                        | Emitted on `focus`  event               |\n| onChange      |                   | Emitted on `change` event                                              |\n| onKeyPress      |                   | Emitted on `keypress` event                                              |\n| onKeyDown      |                   | Emitted on `keydown` event                                              |\n| onKeyUp      |                   | Emitted on `keyup` event                                              |\n\n## Want to Contribute?\n\n- Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).\n- [Fork it](http://help.github.com/forking/).\n- Create new branch to contribute your changes.\n- Commit all your changes to your branch.\n- Submit a [pull request](http://help.github.com/pull-requests/).\n\n---\n\n## Collection of Components\n\nWe have built many other components and free resources for software development in various programming languages. Kindly click here to view our [Free Resources for Software Development](https://www.weblineindia.com/software-development-resources.html)\n\n---\n\n## Changelog\n\nDetailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.md).\n\n## Credits\n\nreact-weblineindia-ck-editor is inspired by [react-quill](https://www.npmjs.com/package/react-quill).\n\n## License\n\n[MIT](LICENSE)\n\n[mit]: https://github.com/weblineindia/ReactJS-CK-Editor/blob/master/LICENSE\n\n## Keywords\n\nreact-weblineindia-ck-editor, react-ck-editor, reactjs-ck-editor, react-editor, react-ckeditor, rich-text-editor, wysiwyg-editor, reactjs-wysiwyg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweblineindia%2Freactjs-ck-editor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweblineindia%2Freactjs-ck-editor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweblineindia%2Freactjs-ck-editor/lists"}