microsoft/monaco-editor

A browser based code editor

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 9 minutes ago
Added to GitGenius on August 31st, 2026
Created on June 7th, 2016
Open Issues & Pull Requests: 848 (+0)
GitHub issues: Enabled
Number of forks: 4,116
Total Stargazers: 46,630 (-1)
Total Subscribers: 535 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 4.9 days
Mean response time: 76.3 days
90th percentile: 240.3 days
Tracked items: 424

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 98% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "typescript" is answered fastest, typically in about 3 days, while "confirmed" waits about 4 months. 65% of tracked open issues have had no activity in three months, so the open count overstates what is actively being worked. Only 4% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 412
New in 7 days: 2
Closed in 7 days: 0
Avg open age: 788 days
Stale 30+ days: 377
Stale 90+ days: 346

Recent activity

Opened in 7 days: 2
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 1

Top labels

  • feature-request (127)
  • bug (119)
  • accessibility (23)
  • editor-core (21)
  • verified (21)
  • help wanted (19)
  • confirmed (18)
  • typescript (17)

Detailed Description

Monaco Editor is a browser-based code editor that brings the fully featured editing capabilities of VS Code to web applications.

The editor solves the problem of embedding a production-grade code editor in web applications without requiring users to install desktop software. It centers on a model-view architecture where models represent file content and track edit history, while editors provide the user-facing view attached to the DOM. Providers deliver smart features like code completion and hover information, often mapping to language server protocol capabilities. The tool supports multiple languages through localization via nls script files and offers both ESM and AMD builds, though AMD support is deprecated.

Developers should choose this tool when building web-based IDEs, collaborative editing platforms, or any application requiring sophisticated code editing with language-aware features. The interactive playground provides the best way to explore supported features and test different versions before integration. The project suits scenarios where you need to represent content as a virtual file system with proper URIs, since some smart features like TypeScript import resolution depend on correct model URIs. The tool is particularly valuable for teams already familiar with VS Code, as it shares the same underlying editor.

The project maintains active development with regular updates to keep pace with VS Code's evolution. The codebase demonstrates careful attention to API stability, with the monaco.d.ts file explicitly versioned while other internals are treated as private and subject to change. The team provides comprehensive documentation covering core concepts like models, URIs, editors, providers, and the disposal pattern for resource cleanup. Development activity shows responsiveness to the playground as a primary learning resource and emphasis on backwards compatibility considerations during deprecation cycles.