Read
Read
Requirements:
Installation
npm i -g pnpm
git clone https://github.com/Vendicated/Vencord
cd Vencord
pnpm install --frozen-lockfile
pnpm build
pnpm inject
For anyone who is interested in what these commands do, read below if you don't
care ignore:
- npm i -g pnpm | This command installs the pnpm package that is used to manage
other packages. I = install / G = globally, it installs the package so it can be
accessed anywhere.
- cd Vencord | This command goes into the Vencord folder created from the git clone
command.
- pnpm install --frozen-lockfile | This command installs all the required needed
packages for Vencord to run. --frozen-lockfile, prevents it from updating the
lockfile.
- pnpm build | This command just compiles all files to get ready for injection
- pnpm inject | This command injects/installs all the repo to whatever it's
assigned to, in this case it's Discord.
Adding Plugins
Once Vencord has been installed to Discord, go to the directory where the git clone
command installed the Vencord folder. (This is usually your main drive)
When in the Vencord folder, go to src -> plugins, now just copy and paste both the
library and plugin folder here.
! Thanks to philhk for creating the library, philsPluginLibrary and who originally
created the plugin. https://github.com/philhk/Vencord
! Credits to the orginal developer of the plugin -
https://github.com/blockgameentity
(For anyone wondering, both the library and plugin are listed on their repo. I
didn't include a download link to them because there are changes to the ones used
for this)