Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I write my own plugin for Webstorm?

Tags:

I want to write a specialized plugin for WebStorm that can provide help for a custom framework, are there any tutorials on how to do that?

like image 354
Robert Gould Avatar asked Apr 06 '12 15:04

Robert Gould


People also ask

What language are IntelliJ plugins written in?

IntelliJ plugins run on the Java virtual machine (“JVM”), so naturally they're written in a JVM-compatible language. The plugin APIs are best suited for Java and Kotlin.

What is WebStorm built with?

WebStorm is built on top of the open-source IntelliJ Platform developed by JetBrains. WebStorm gets its UI and many features, such as the core editor and Git integration, from the IntelliJ Platform. There are over 130 people at JetBrains working on the platform, and the WebStorm team works closely with them.


1 Answers

There is no WebStorm specific guide available, plug-ins are created exactly the same way as for IntelliJ IDEA.

You are welcome to ask more specific questions in the forum.

like image 89
CrazyCoder Avatar answered Sep 27 '22 23:09

CrazyCoder