How to write your own language plugin for IDEA (part 1)

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • monkey-source

  • I am working as a backend-developer, and sometimes I am tired of work routine. Deeping into some opensource helps me and I really keen on Jetbrains' product and IDEA. IDEA can be customized with plugins, which you can write yourself. The most part of IDEA's code is open-source. Developers from Jetbrains always help you to make pull request and improve your main tool. I already have the article about how to write a small plugin with one inspection. But if you want to understand how IDEA works, you should try to write a language plugin. Let's do this. As a "guinea pig" we will take the simple language - Monkey, the interpreter and compiler for it is described in the books on Golang. Since my goal was not to cover everything, the plugin covers some limited subset of this language. The interpreter can be found here.

  • intellij-platform-plugin-template

    Template repository for creating plugins for IntelliJ Platform

  • The easiest way to create a new plugin is using the template. It is being actively developing and had already included most needed features.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts