• 授权协议:MIT
  • 开发厂商:微软
  • 软件语言:JavaScript,HTML/CSS
  • 更新日期:2016-06-08

monaco-editor 基于浏览器的代码编辑器 项目简介

Monaco Editor 是微软开源的基于 VS Code 的代码编辑器,运行在浏览器环境中。编辑器提供代码提示,智能建议等功能。供开发人员远程更方便的编写代码。描述代码编辑器功能的页面在这里。安装:npm install monaco-editor你将会得到inside dev: bundled, not minifiedinside min: bundled, and minifiedinside min-maps: source maps for minmonaco.d.ts: this specifies the API of the editor集成这里是嵌入编辑器最基本的HTML页面,更多的示例可在monaco-editor-samples找到<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
</head>
<body>

<div id="container"  ="width:800px;height:600px;border:1px solid grey"></div>

<script src="monaco-editor/min/vs/loader.js"></script><script>    require.config({ paths: { 'vs': 'monaco-editor/min/vs' }});    require(['vs/editor/editor.main'], function() {        var editor = monaco.editor.create(document.getElementById('container'), {            value: [                'function x() {',                '\tconsole.log("Hello world!");',                '}'            ].join('\n'),            language: 'javascript'        });    });</script></body>
</html>

monaco-editor 基于浏览器的代码编辑器 相关推荐

monaco-editor 基于浏览器的代码编辑器 评论内容