为Linux安装基于Monaco Editor浏览器的代码编辑器
时间:2020-02-23 14:31:13 来源:igfitidea点击:
我们是否厌倦了使用Desktop IDE并为Linux/macOS上的项目寻找基于浏览器的代码编辑器? Monaco Editor是用Node.js编写的代码编辑器,它为VS Code提供支持。我们可以从官方项目上了解有关Monaco Editor的更多功能。
Monaco Editor已获得MIT许可,并支持Chrome,Safari,Firefox,IE 11,Edge和Opera。只要主机系统上存在Node.js,就可以轻松地将其安装在任何Linux系统上。
在Linux上安装基于Monaco Editor Browser的代码编辑器
在安装Monaco Editor之前,我们需要安装Node.js。
如何在RHEL 8上安装Node.js 10 LTS
在Ubuntu 18.04/16.04/Debian 9上安装Node.js
在CentOS 7/Fedora 29/Fedora 28上安装Node.js LTS
安装完Node.js之后,运行以下命令下载并安装Monaco Editor。
$git clone https://github.com/Microsoft/monaco-editor.git
安装所需的Node软件包
$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
然后使用以下命令启动" simpleserver":
$ npm run simpleserver > theitroad@localhost simpleserver /home/jmutai/monaco-editor > gulp simpleserver [20:30:02] Using gulpfile ~/monaco-editor/gulpfile.js [20:30:02] Starting 'generate-test-samples'... [20:30:02] Finished 'generate-test-samples' after 36 ms [20:30:02] Starting 'simpleserver'... LISTENING on 8080 and 8088
访问http://localhost:8080/monaco-editor/website /上的Monaco Editor