Package Exports
- ngx-tinymce
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ngx-tinymce) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ngx-tinymce 
Tinymce Components build with Angular.
Installation instructions
Install ngx-tinymce
from npm
npm install ngx-tinymce --save
You will need tinymce.min.js
file via Build Customizer generate.
Import the ngx-tinymce
in to your root AppModule
.
import { NgxTinymceModule } from 'ngx-tinymce';
@NgModule({
imports: [
NgxTinymceModule.forRoot({
baseURL: './assets/tinymce/',
// or cdn
baseURL: '//cdn.bootcss.com/tinymce/4.7.4/'
})
]
})
export class AppModule { }
How to use it with:
angular-cli
please refer to Installation instructions.plnkr
sample available here.