Consulo alternatives and similar packages
Based on the "IDE" category.
Alternatively, view Consulo alternatives based on common mentions on social networks and blogs.
-
Waf DotNetPad
The Waf DotNetPad is a simple and fast code editor that makes fun to program with C# or Visual Basic. -
CSharp Analyzer by MongoDB
The MongoDB Analyzer is a free tool that helps you understand how your code translates into the MongoDB Query API.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Consulo or a related project?
README
About
Consulo - multi-language ide. Project was started in 2013 year by forking IDEA Community Edition.
Main goal - create open IDE where you don't need select IDE for different languages. Provide a standard for language implementation inside IDE.
Contributing
If you can't describe issue, you can use our forum, or you can read contributing guide and report issue at GitHub
Building & Running
Build Status
JVM | Github Actions |
---|---|
Java 11 | |
Java 14 | |
Java 15 | |
Java 16 | |
Java 17 |
First of all, you need those tools:
- Maven 3.3+
- JDK 11+
Then execute from command line:
mvn package
If you want run Consulo from repository
- as desktop application
mvn install
mvn consulo:run-desktop -pl consulo:consulo-sandbox-desktop
- as web application
first need build web sandbox
mvn package -am -pl consulo:consulo-sandbox-web
then need start code server (since we used gwt as frontend)
cd modules/web/web-ui-impl-client
mvn -am vaadin:run-codeserver
and start web server
cd modules/web/web-bootstrap
mvn -am jetty:run