Fares Ayyad

Fares Ayyad

  • NA
  • 175
  • 8k

Using angular Text Editor with visual studio

Aug 24 2017 4:41 AM
I'm trying to use Angular Froala WYSIWYG Editor in visual studio 2017 i installed the package via npm using this command in node.js command prompt:
 
  1. npm install angular-froala-wysiwyg  
 Then i include the js and css links to _layout.cshtml file:
 
 in app.module.ts i import the FroalaEditorModule, FroalaViewModule.
 
 
 

Note that the error i get is in the app.module.ts file because every time i comment out this two imports [FroalaEditorModule.forRoot(), FroalaViewModule.forRoot()] in the imports array the error is gone.

this is the error:

 
 
 
 
 
 

I tried to install and use the Text editor using Angular CLI and every thing went smoothly and the editor worked.

I read that i should import (or include) the package reference to the system.config.js file but really i don't know how to do that because it's the first time i use angular with vs.

 

Answers (1)