简体   繁体   中英

monaco-editor integration with angular6 app

I'm trying to integrate Monaco Editor into my angular lib in an Angular-6 app, I'm new at this and the official docs doesn't have any setup guide for the implementation. Any advice or guidance would be greatly appreciated.

Use the ngx-monaco-editor NPM module

It provides support for various angular versions

In your case for Angular 6 you need to do

npm install ngx-monaco-editor@6.0.0 --save

then reference the module in your app.module

import { MonacoEditorModule } from 'ngx-monaco-editor';
...
imports: [
...
MonacoEditorModule.forRoot(),
...

and then in your html component you can use it like such:

<ngx-monaco-editor ... ></ngx-monaco-editor>

Read the readme here: https://www.npmjs.com/package/ngx-monaco-editor

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM