Features | Installation | How to Build
What the heck?! I only need to use one style for my plugin?
Ittai?! I only need to use Ittai for my plugin?
Ittai is a plugin builder for Discord client mods. Which ones? Yes.
- Build even single-file BD plugins from multi-file projects.
- Write one codebase, distribute one product.
- Hot rebuild your plugins.
- Use various flavors of JS to create your plugins.
- JSX
- TypeScript (and TSX!)
- ES6 Modules (both
require("module");
andimport module from "module";
) - CoffeeScript
- I didn't forget about CSS!
- Load your stylesheets easily.
import style from "./style.css";
start() {style.add();}
stop() {style.remove();}
- SASS (SCSS)
- Stylus
- LESS
- Load your stylesheets easily.
- Build to almost any client mod.
- BetterDiscord
- Powercord v2
- Vizality
git clone https://github.com/Kyza/ittai/
pnpm i
pnpm bin
--plugin="path/to/your/plugin"
--betterdiscord
(optional)- Specify
="path/to/plugin/folder"
to copy the built file to the folder. - Builds for BetterDiscord.
- Specify
--powercordv2
(optional)- Specify
="path/to/plugin/folder"
to copy the built files to the folder. - Builds for Powercord v2.
- Specify
--vizality
(optional)- Specify
="path/to/plugin/folder"
to copy the built files to the folder. - Builds for Vizality.
- Specify
--watch
(optional)- Will watch for changes in your plugin's unbuilt files and automatically run the command again for you.
This command will build your plugin for BetterDiscord, Powercord v2, and Vizality, but will only copy it to the Vizality plugin's folder. It will also hot rebuild your plugin for you.
ittai --plugin="./test/plugin" --betterdiscord --powercordv2 --vizality="C:/Users/Kyza/GitHub/vizality/addons/plugins/fgbd" --watch