Simple WYSIWYG Editor For Angular Apps- ngx-editor

Author: sibiraj-s
Official Page: Go to website
Publish Date: October 11, 2018
License: MIT

Description:

A simple native WYSIWYG Editor for Angular Apps. Based on the Ngx-Bootstrap and Font Awesome iconic font.

Installation:

# Yarn
$ yarn add ngx-editor

# NPM
$ npm install ngx-editor --save

Basic usage

1. Import the necessary modules.

import { FormsModule } from '@angular/forms';
import { NgxEditorModule } from 'ngx-editor';
@NgModule({
  imports: [NgxEditorModule],
})
export class AppModule {}

2. Add the native WYSIWYG editor to the app.

<ngx-editor [ngModel]="jsonDoc"></ngx-editor>

Preview:

WYSIWYG Editor for Angular 6 - ngx-editor


You Might Be Interested In:

Add Comment