+++ title = "Developer Guide" type = "docs" aliases = ["/plugins/datasources/", "/plugins/apps/", "/plugins/panels/"] [menu.docs] name = "Developer Guide" parent = "plugins" weight = 5 +++
From grafana 3.0 it's very easy to develop your own plugins and share them with other grafana users.
/var/lib/grafana/plugins or data/plugins (relative to grafana git repo if your running development version from source dir)Since everything turns into javascript it's up to you to choose which language you want. That said it's probably a good idea to choose es6 or typescript since we use es6 classes in Grafana. So it's easier to get inspiration from the Grafana repo is you choose one of those languages.
You can use any build system you like that support systemjs. All the built content should end up in a folder named dist and committed to the repository.By committing the dist folder the person who installs your plugin does not have to run any buildscript.
All our example plugins have build scripted configured.
This is the entry point for every plugin. This is the place where you should export your plugin implementation. Depending on what kind of plugin you are developing you will be expected to export different things. You can find what's expected for datasource, panels and apps plugins in the documentation.
There are three ways that you can start developing a Grafana plugin.
data/plugins folder./var/lib/grafana/plugins on Linux systems.We encourage people to setup the full Grafana environment so that you can get inspiration from the rest of grafana code base.
When Grafana starts it will scan the plugin folders and mount every folder that contains a plugin.json file unless the folder contains a subfolder named dist. In that case grafana will mount the dist folder instead. This makes it possible to have both built and src content in the same plugin git repo.
We currently have three different examples that you can fork/download to get started developing your grafana plugin.