
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
zerespluginlibrary
Advanced tools
This is the repo for Zere's Plugin Library for BetterDiscord. You can follow development here. There will be more info and shit to come, but for now here ya go.
View the library documentation here: https://rauenzi.github.io/BDPluginLibrary/docs
The information below is just a quickstart guide and overview on using the build scripts provided.
If you'd like a real-world example, take a look at https://github.com/rauenzi/BetterDiscordAddons
First add the library builder to your repo:
npm install zerespluginlibrary
Then add to your package.json:
{
//...
"scripts": {
// ...
"build": "zpl build",
"init": "zpl init"
}
// ...
}
Create your ZPL config. You can use .zplrc, .zplrc.js, or a top-level zplConfig key in package.json;
// .zplrc.js
module.exports = {
base: "./examples",
out: "./release",
copyToBD: true,
addInstallScript: true
};
Initialize your first plugin with:
npm run init PluginName
You should a new folder with an index.js and config.json. When you're ready to build, just run:
npm run build PluginName
and a new PluginName.plugin.js will be created in your output folder.
npm install
npm run build
This generates a BD compatible ./release/0PluginLibrary.plugin.js file to be added to your plugins folder.
The library is configurable with the default configuration found in the package.json.
releaseFolderAbsolute or relative path to the folder where plugins that are built should be placed.
Default: "./release"
bdFolderAbsolute or relative path to the BetterDiscord folder. Useful when combined with copyToBD. This folder is found automatically on most system.
Default: "<os-specific>/BetterDiscord"
copyToBDBoolean to determine if the built plugin should also be automatically copied over to your BD plugins directory. Very convenient for development.
Default: false
FAQs
Zere's library for BetterDiscord plugins.
The npm package zerespluginlibrary receives a total of 22 weekly downloads. As such, zerespluginlibrary popularity was classified as not popular.
We found that zerespluginlibrary demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.