@mendix/extensions-api - v0.2.0

Mendix Studio Pro Web Extensibility API

This is the API documentation for the Mendix Studio Pro Web Extensibility APIs.

The main entry point is the studioPro object, which provides access to all the extensibility APIs.

It can be used in your code by importing it from the package as follows:

import { studioPro } from "@mendix/extensions-api";

async function myCode() {
await studioPro.ui.messageBoxes.show("info", "Hello World from my extension!");
}

We have some nice guides on how to debug your extension. Please note these tutorials are intended to be used in conjunction withe the extension template generator

'Debuging extensions with VS Code'

'Debuging extensions with browser dev tools'