JSPM

ckb-editor-angular

3.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 29
  • Score
    100M100P100Q46290F
  • License MIT

🚀 Free Angular Rich Text Editor (WYSIWYG) - Alternative to CKEditor, TinyMCE, Quill | PDF/DOCX Export, Tables, Code Blocks, Emoji Support, Themes

Package Exports

  • ckb-editor-angular
  • ckb-editor-angular/package.json

Readme

CKB Editor Angular
npm version License: MIT Angular Author 🚀 Free Alternative to CKEditor, TinyMCE, Quill for Angular Created by Abhishek Rout | LinkedIn | GitHub
### ✅ CKB Editor Solution: - 100% FREE - All features included - No License Required - Use in commercial projects - Easy to Use - Simple integration - Lightweight - Small bundle size - Modern - Angular 12+ support - Feature Rich - Export PDF/DOCX, Tables, Code blocks, Emojis --- ## 📦 Installation ### Step 1: Install Package bash npm install ckb-editor-angular --save --- ## Import Module typescript // app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { CkbEditorModule } from 'ckb-editor-angular'; import { AppComponent } from './app.component'; @NgModule({ declarations: [AppComponent], imports: [ BrowserModule, CkbEditorModule // Add this ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } ### Usage typescript // app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: ` <ckb-editor [(ngModel)]="content" [config]="editorConfig"> </ckb-editor> ` }) export class AppComponent { content = '<p>Hello World!</p>'; editorConfig = { height: 400, menubar: true, plugins: ['link', 'lists', 'code'], toolbar: 'bold italic | alignleft aligncenter alignright | code' }; } ### ✨ Works with Angular 12+ bash # Angular 12 npm install ckb-editor-angular@latest # Angular 13 npm install ckb-editor-angular@latest # Angular 14 npm install ckb-editor-angular@latest # Angular 15 npm install ckb-editor-angular@latest # Angular 16 npm install ckb-editor-angular@latest # Angular 17 npm install ckb-editor-angular@latest ## 🔧 Angular Version Compatibility: json "peerDependencies": { "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0" } ## 👨‍💻 Author
Abhishek Rout
Abhishek Rout

💼 💻