Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Monaco Editor | 34,402 | 1,185 | 1,263 | 3 hours ago | 293 | August 30, 2022 | 323 | mit | JavaScript | |
A browser based code editor | ||||||||||
Learn Vim | 11,420 | a month ago | 11 | other | ||||||
Learning Vim and Vimscript doesn't have to be hard. This is the guide that you're looking for 📖 | ||||||||||
Rust By Example | 5,830 | 8 hours ago | 102 | apache-2.0 | ||||||
Learn Rust with examples (Live code editor included) | ||||||||||
React Ace | 3,737 | 1,790 | 542 | 3 months ago | 97 | April 26, 2022 | 192 | mit | JavaScript | |
React Ace Component | ||||||||||
Codeapp | 2,071 | 13 days ago | 383 | mit | Swift | |||||
Building a full-fledged code editor for iPad | ||||||||||
Masscode | 1,977 | a year ago | 70 | agpl-3.0 | Vue | |||||
This repository is outdated and new version of massCode is available! https://github.com/massCodeIO/massCode. A free and open source code snippets manager for developers. | ||||||||||
Codejar | 1,444 | 5 | 13 days ago | 13 | April 03, 2022 | 4 | mit | TypeScript | ||
An embeddable code editor for the browser 🍯 | ||||||||||
Cpeditor | 1,387 | 16 hours ago | 77 | gpl-3.0 | C++ | |||||
The IDE for competitive programming :tada: | Fetch, Code, Compile, Run, Check, Submit :rocket: | ||||||||||
Import Cost | 1,274 | 10 | 6 | a month ago | 29 | April 06, 2022 | 40 | mit | JavaScript | |
displays the import size of the package you are importing inside the code editor | ||||||||||
Urlpages | 1,235 | 3 years ago | 3 | mit | JavaScript | |||||
Create and view web pages stored entirely in the URL |
The Monaco Editor is the fully featured code editor from VS Code. Check out the VS Code docs to see some of the supported features.
Try out the editor and see various examples in our interactive playground.
The playground is the best way to learn about how to use the editor, which features is supports, to try out different versions and to create minimal reproducible examples for bug reports.
> npm install monaco-editor
You will get:
/esm
: ESM version of the editor (compatible with e.g. webpack)/dev
: AMD bundled, not minified/min
: AMD bundled, and minified/min-maps
: source maps for min
monaco.d.ts
: this specifies the API of the editor (this is what is actually versioned, everything else is considered private and might break with any release).It is recommended to develop against the dev
version, and in production to use the min
version.
monaco.d.ts
.Create issues in this repository for anything related to the Monaco Editor. Please search for existing issues to avoid duplicates.
What is the relationship between VS Code and the Monaco Editor?
The Monaco Editor is generated straight from VS Code's sources with some shims around services the code needs to make it run in a web browser outside of its home.
What is the relationship between VS Code's version and the Monaco Editor's version?
None. The Monaco Editor is a library and it reflects directly the source code.
I've written an extension for VS Code, will it work on the Monaco Editor in a browser?
No.
Note: If the extension is fully based on the LSP and if the language server is authored in JavaScript, then it would be possible.
Why all these web workers and why should I care?
Language services create web workers to compute heavy stuff outside of the UI thread. They cost hardly anything in terms of resource overhead and you shouldn't worry too much about them, as long as you get them to work (see above the cross-domain case).
What is this loader.js
? Can I use require.js
?
It is an AMD loader that we use in VS Code. Yes.
I see the warning "Could not create web worker". What should I do?
HTML5 does not allow pages loaded on file://
to create web workers. Please load the editor with a web server on http://
or https://
schemes.
Is the editor supported in mobile browsers or mobile web app frameworks?
No.
Why doesn't the editor support TextMate grammars?
monaco-editor
, vscode-oniguruma
and vscode-textmate
to get TM grammar support in the editor.We are welcoming contributions from the community! Please see CONTRIBUTING for details how you can contribute effectively, how you can run the editor from sources and how you can debug and fix issues.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
Licensed under the MIT License.