{"id":49202218,"url":"https://github.com/feature23/ngx-editor","last_synced_at":"2026-04-23T15:04:25.168Z","repository":{"id":342084835,"uuid":"1170926455","full_name":"feature23/ngx-editor","owner":"feature23","description":"🖋️ Rich Text Editor for angular using ProseMirror (Fork)","archived":false,"fork":false,"pushed_at":"2026-03-04T17:43:02.000Z","size":18855,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-04T23:52:45.291Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://feature23.github.io/ngx-editor/","language":"TypeScript","has_issues":false,"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/feature23.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["sibiraj-s"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2026-03-02T17:19:44.000Z","updated_at":"2026-03-04T17:47:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/feature23/ngx-editor","commit_stats":null,"previous_names":["feature23/ngx-editor"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/feature23/ngx-editor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feature23%2Fngx-editor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feature23%2Fngx-editor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feature23%2Fngx-editor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feature23%2Fngx-editor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feature23","download_url":"https://codeload.github.com/feature23/ngx-editor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feature23%2Fngx-editor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32185329,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-23T11:42:27.955Z","status":"ssl_error","status_checked_at":"2026-04-23T11:42:18.877Z","response_time":53,"last_error":"SSL_read: 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-04-23T15:04:24.039Z","updated_at":"2026-04-23T15:04:25.162Z","avatar_url":"https://github.com/feature23.png","language":"TypeScript","funding_links":["https://github.com/sponsors/sibiraj-s"],"categories":[],"sub_categories":[],"readme":"\u003c!-- FEATURE23-FORK: README rewritten for fork --\u003e\n\n# @feature23/ngx-editor\n\n\u003e **This is a fork of [ngx-editor](https://github.com/sibiraj-s/ngx-editor) maintained by [feature23](https://github.com/feature23).** It includes experimental changes and Angular version updates that have not yet been merged upstream. If you don't need these changes, please use the official package at [ngx-editor](https://github.com/sibiraj-s/ngx-editor).\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/feature23/ngx-editor\"\u003e\n   \u003cimg src=\"./sketch/ngx-editor.svg\" alt=\"ngxEditor\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003eThe Rich Text Editor for Angular, Built on ProseMirror\u003c/p\u003e\n\n\u003e A simple rich text editor for angular applications built with ProseMirror. It is a drop in and easy-to-use editor\n\u003e and can be easily extended using prosemirror plugins to build any additional or missing features\n\n## Getting Started\n\n[demo] | [edit on stackblitz][stackblitz] | [documentation] | [migrating from other editors][migration]\n\n### Installation\n\nInstall via Package managers such as [npm] or [pnpm] or [yarn]\n\n```bash\nnpm install @feature23/ngx-editor\n# or\npnpm install @feature23/ngx-editor\n# or\nyarn add @feature23/ngx-editor\n```\n\n### Usage\n\n**Note**: By default the editor comes with minimal features. Refer the [demo] and [documentation] for more details and examples.\n\nComponent\n\n```ts\nimport {\n  NgxEditorComponent,\n  NgxEditorMenuComponent,\n  Editor,\n} from '@feature23/ngx-editor';\nimport { FormsModule } from '@angular/forms';\n\n@Component({\n  selector: 'editor-component',\n  templateUrl: 'editor.component.html',\n  styleUrls: ['editor.component.scss'],\n  standalone: true,\n  imports: [NgxEditorComponent, NgxEditorMenuComponent, FormsModule],\n})\nexport class NgxEditorComponent implements OnInit, OnDestroy {\n  html = '';\n  editor: Editor;\n  ngOnInit(): void {\n    this.editor = new Editor();\n  }\n\n  ngOnDestroy(): void {\n    this.editor.destroy();\n  }\n}\n```\n\nThen in HTML\n\n```html\n\u003cdiv class=\"NgxEditor__Wrapper\"\u003e\n  \u003cngx-editor-menu [editor]=\"editor\"\u003e \u003c/ngx-editor-menu\u003e\n  \u003cngx-editor\n    [editor]=\"editor\"\n    [ngModel]=\"html\"\n    [disabled]=\"false\"\n    [placeholder]=\"'Type here...'\"\n  \u003e\u003c/ngx-editor\u003e\n\u003c/div\u003e\n```\n\nNote: Input can be a HTML string or a jsonDoc\n\n## Browser Compatibility\n\nMostly works on all Evergreen-Browsers like\n\n- Google Chrome\n- Microsoft Edge\n- Mozilla Firefox\n- Safari\n- Opera\n\n## Collaborative Editing\n\nSee https://sibiraj-s.github.io/ngx-editor/#/collab\n\n## Icons\n\nIcons are from https://fonts.google.com/icons\n\n## Contributing\n\nAll contributions are welcome. See [CONTRIBUTING.md](./.github/CONTRIBUTING.md) to get started.\n\n[npm]: https://www.npmjs.com/\n[pnpm]: https://pnpm.io/\n[yarn]: https://yarnpkg.com/lang/en/\n[documentation]: https://sibiraj-s.github.io/ngx-editor\n[demo]: https://ngx-editor.stackblitz.io/\n[stackblitz]: https://stackblitz.com/edit/ngx-editor\n[migration]: https://sibiraj-s.github.io/ngx-editor/#/migration\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeature23%2Fngx-editor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffeature23%2Fngx-editor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeature23%2Fngx-editor/lists"}