Build and install your plugin

After developing your plugin, you need to build it.

Two files are required: main.js and manifest.json.

main.js

main.js contains all codes in your plugin, including dependencies ( Put Rendevoz in devDependencies! ). And it should expose a default function as the entrypoint of your plugin.

// example
export default api => {
    ...(Your code here)
}

manifest.json

You need manifest.json to show people your plugin's name, author and version.

{
    "name": "test-plugin",
    "author": "Rong",
    "version": "0.0.1"
}

Last step

After you prepared these two necessary files, you need to put them in one folder.

File structure of your plugin

Then you need to put that folder under "plugins" folder under user's data path (You can find it in settings).

Plugins Market & Code Review

On the roadmap.

Last updated