dart_minecraft 0.1.0 copy "dart_minecraft: ^0.1.0" to clipboard
dart_minecraft: ^0.1.0 copied to clipboard

outdated

Brings Minecraft and Mojang APIs to Dart.

dart_minecraft #

Pub Package GitHub Issues GitHub Stars GitHub License

A simple Dart library for interfacing with the Mojang and Minecraft APIs.

Examples #

Skin/Cape of a player #

void main() async {
    Pair player = await Mojang.getUuid('<your username>');
    Profile profile = await Mojang.getProfile(player.getSecond);
    String url = profile.getTextures.getSkinUrl();
}

Name history of a player #

void main() async {
    String uuid = await Mojang.getUuid('<your username>');
    List<Name> history = await Mojang.getNameHistory(uuid);
    history.forEach((Name name) => print(name.getName));
}

Planned #

  • Support for all the Minecraft and Minecraft Launcher APIs.
  • Support for launching Minecraft itself.
  • Support for seeing and joining a Minecraft Server.

License #

The MIT License, see LICENSE.

19
likes
0
pub points
63%
popularity

Publisher

unverified uploader

Brings Minecraft and Mojang APIs to Dart.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

uuid

More

Packages that depend on dart_minecraft