Installing User Plugins
Equicord supports any plugin to be built into your Discord, whether they are plugins made by the community, adapted from Vencord, or ones you wrote yourself.
WARNING
Equicord does not provide support for user plugins or dev builds. If you run into issues you cannot resolve on your own, you may ask in developer channels (NOT SUPPORT), but a response is not guaranteed.
Before You Start
User plugins require building Equicord from source. If you have not done this yet, follow the Building from Source guide first.
You will also need to understand where plugins live in the project, since putting a plugin in the wrong folder is the most common cause of issues.
Where plugins live
Equicord separates plugins into three folders depending on their purpose:
| Folder | What goes here |
|---|---|
src/equicordplugins/ | Official Equicord plugins, shipped with the project. |
src/plugins/ | Plugins sourced from or based on Vencord. |
src/userplugins/ | Your private plugins. Not tracked, not shared. |
Unless you are contributing to Equicord or Vencord, always use src/userplugins/.
Installing a Plugin
1. Create the userplugins folder
This folder does not exist by default. Navigate to src/ inside your Equicord folder and create a new folder named userplugins.
src/userplugins/2. Add the plugin
Place the plugin inside src/userplugins/. Each plugin must have it's own folder, and the entry file must be named index.ts or index.tsx.
Valid structures
src/userplugins/myMagicPlugin/index.ts
src/userplugins/myMagicPlugin/index.tsxInvalid structures
src/userplugins/MyMagicPlugin/MyMagicPlugin/MyMagicPlugin.ts
src/userplugins/MyMagicPlugin/MyMagicPlugin/MyMagicPlugin.tsx
src/userplugins/index.ts
src/userplugins/index.tsx
src/userplugins/MyMagicPlugin/MyMagicPlugin.ts
src/userplugins/MyMagicPlugin/MyMagicPlugin.tsx3. Rebuild Equicord
After adding the plugin, rebuild so it gets bundled into Discord:
pnpm buildIf you want to also include developer-only plugins, use:
pnpm build --dev4. Restart Discord
Once the build finishes, restart Discord. Your plugin should now appear in the plugins tab.
Updating Equicord & official plugins
Run these three commands inside your Equicord folder:
git fetch
git pull
pnpm buildNOTE
git fetch and git pull only update Equicord itself and its official plugins. They do not update your user plugins automatically.
After building, you only need to run pnpm inject again if Discord is not already injected. If it was already running, a simple restart of Discord is enough.
Updating user plugins
Git does not manage your user plugins. To update a user plugin, you need to:
If you're experienced enough, you can look it up or figure out how make git manage it, but let's focus on simplicity.
- Download the new version of the plugin manually from its repository or source.
- Replace the old file(s) inside
src/userplugins/with the new ones. - Rebuild Equicord:
pnpm buildTIP
If you are not familiar with Git yet, the GitHub Git guide and the Git for beginners are great places to start. They will teach you how Git works and how to use it, which will help you both here and in many other situations.
Troubleshooting
If your plugin isn't showing up, check these first:
- Wrong folder (
equicordplugins,plugins, oruserplugins). - The entry file is not named
index.tsorindex.tsx. - Folder name is not camelCase.
- Equicord was not rebuilt after adding the plugin.
Missing dependencies
If pnpm build complains about missing packages, run:
pnpm installThen try building again.
Discord not reflecting your build
If Discord still shows the old version after building, try rebuilding:
pnpm buildIf the issue persists, make sure Discord was fully restarted after the build completed.
Something in your user plugin broke
Errors that persist after running pnpm install are almost always caused by the plugin itself, a syntax error, a missing file, a broken import or whatever. Read the error message carefully and check the plugin's source manually.
NOTE
Want to help improve these docs? Open a PR on GitHub.
