https://github.com/meverastudios/imperat
Enterprise command dispatching framework with optimal performance
https://github.com/meverastudios/imperat
api bukkit bungeecord command-framework command-line-interface commands minestom-library spigot velocity
Last synced: 3 days ago
JSON representation
Enterprise command dispatching framework with optimal performance
- Host: GitHub
- URL: https://github.com/meverastudios/imperat
- Owner: MeveraStudios
- License: other
- Created: 2024-08-20T20:11:26.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2026-01-17T00:08:41.000Z (2 months ago)
- Last Synced: 2026-01-17T10:17:36.466Z (2 months ago)
- Topics: api, bukkit, bungeecord, command-framework, command-line-interface, commands, minestom-library, spigot, velocity
- Language: Java
- Homepage:
- Size: 3.58 MB
- Stars: 41
- Watchers: 0
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Imperat - The Blazing Fast Command Framework
[](https://search.maven.org/artifact/studio.mevera/imperat-core)
[](https://discord.gg/McN4GMWApE)
[](https://java.com)
Imperat is a high performance generic command framework, designed to facilitate the creation of commands
and replace the old boilerplate code with new modern and well organized code for your commands!
**Built with ❤️**
## Example Command
```java
@RootCommand({"message", "msg"})
public class MessageCommand {
@Execute()
public void exec(Player sender, Player target, @Greedy String message) {
// send private message to the target
target.sendMessage("From " + sender.getName() + ": " + message);
}
}
```
## 📚 Learn More
- [Documentation](https://mevera.studio/docs/Imperat/getting-started)
- [Discord](https://discord.gg/McN4GMWApE)