Overview
VexAPI is built to simplify plugin development by providing an efficient and intuitive structure for handling data, configuration, and performance-sensitive tasks.
It’s designed for developers who want both control and clarity without unnecessary complexity.
Features
✅ Lightweight — minimal file size and fast load time
✅ Clean code structure — easy to integrate into any project
✅ Compatible with Spigot and Paper (1.20+)
✅ Well-documented and developer-focused
✅ Stable and production-ready
How to Use
1. Download the latest release and add the `.jar` file to your `plugins` folder
2. Add it as a dependency in your plugin.yml:
Code (Text):
depend: [VexAPI]
3. Access its utilities directly in your plugin:
Code (Text):
VexLogger.log("Hello from VexAPI!");
VexConfig.load("config.yml");
Integration Example
Code (Text):
public class ExamplePlugin extends JavaPlugin {
@Override
public void onEnable() {
VexLogger.log("Plugin loaded successfully!");
}
}
Developer Notes
VexAPI was designed with simplicity and optimization in mind — use it as a base to keep your code clean and efficient.
For advanced integration examples, visit the GitHub repository.
Links