Monaco Editor是用Node.js编写的代码编辑器,它支持VS Code,本文介绍安装它的方法。Monaco Editor根据MIT许可证获得许可,并支持Chrome、Safari、Firefox、IE 11、Edge和Opera,它可以很容易地安装在主机系统上提供Node.js的任何Linux系统上。
相关链接
在Linux上安装Monaco Editor 1、在安装Monaco Editor之前,你需要安装Node.js,参考以下教程: 在Ubuntu 18.04系统中安装Node.js 10的方法 在CentOS 7/Fedora 29/Fedora 28中安装Node.js 10 LTS 2、安装Node.js后,运行以下命令以下载并安装Monaco Editor: $ git clone https://github.com/Microsoft/monaco-editor.git 3、安装所需的节点包: $ cd monaco-editor/ $ npm install . added 446 packages from 674 contributors and audited 1496 packages in 58.347s found 5 vulnerabilities (1 low, 4 high) run npm audit fix to fix them, or npm audit for details 4、然后启动simpleserver: $ npm run simpleserver > monaco-editor@0.15.6 simpleserver /home/jmutai/monaco-editor > gulp simpleserver [10:30:02] Using gulpfile ~/monaco-editor/gulpfile.js [10:30:02] Starting 'generate-test-samples'... [10:30:02] Finished 'generate-test-samples' after 36 ms [10:30:02] Starting 'simpleserver'... LISTENING on 8080 and 8088 访问位于http://localhost:8080/monaco-editor/website/的Monaco Editor网站:
附:npm方式安装 $ npm install monaco-editor
相关主题 |