nate-summercook / ngx-ckeditor

The CKEditor component for angular(2.x and 4.x)

Home Page:https://hstarcomponents.github.io/ngx-ckeditor/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ngx-ckeditor

Travis CI Status

The CKEditor component for angular(2.x and 4.x)

Usage

Installation

  • Import CKEditor js file
<script src="//cdn.ckeditor.com/4.7.1/full/ckeditor.js"></script>
  • Install ngx-ckeditor
npm i -S ngx-ckeditor

Sample

Import CKEditorModule module in your main module:

// app.module.ts

import { CKEditorModule } from 'ngx-ckeditor';

@NgModule({
  imports: [
    // ...
    CKEditorModule
  ],
  // ...
})
export class AppModule {

}

Then use it in your component:

// app.component.html

<ck-editor name="editor1" [(ngModel)]="editorValue" skin="moono-lisa" lang="en" [fullPage]="true"></ck-editor>
// app.component.ts

@Component({
  selector: 'app',
  templateUrl: 'app.component.html'
})

export class AppComponent implements OnInit {

  public editorValue: string = '';

  ngOnInit() { }
}

CKEditorComponent Options

Type Name DataType Default Value Description
Input readonly boolean false Enabled / disable readonly on editor
Input skin string 'moono-lisa' Set the editor skin
Input language string 'en' Set the editor language
Input fullPage boolean false Enalbed /disable fullPage mode on editor
Input config object {} CKEditor's config object, see more
Two-way ngModel string Two-way binding value

How to develop?

git clone https://github.com/HstarComponents/ngx-ckeditor.git

# install deps
npm i 

# run dev
npm run dev

# build demo
npm run build

# build aot demo
npm run build:aot

Issues

Create an issue

License

MIT License

About

The CKEditor component for angular(2.x and 4.x)

https://hstarcomponents.github.io/ngx-ckeditor/

License:MIT License


Languages

Language:TypeScript 57.6%Language:JavaScript 42.4%