Folder structure
When you have the right structure for your XD plugin, it will look like this:
Copied to your clipboardmy-plugin-folder├── main.js└── manifest.json
Your plugin files
Within the parent folder, you'll need at minimum two files, with these exact names:
manifest.json
is your plugin’s manifest.
Copied to your clipboardThis file is where you include _facts_ about your plugin, such as its name, the menu item(s) it adds to XD, and so on. [Learn about the manifest here](/develop/plugin-development/plugin-structure/manifest/).
main.js
is your plugin’s code.
Copied to your clipboardThis file contains your JavaScript code that implements the logic for your plugin. [Learn more about `main.js` here](/develop/plugin-development/plugin-structure/handlers/).
These two files go into your plugin's parent directory.
The manifest.json
and main.js
files stored in your plugin's parent directory are the bare minimum requirement for your plugin to work, but it's possible to have more JavaScript files if you want. You can learn about including further JavaScript files in our JavaScript concepts section on using require
.