1.0.0 • Published 6 years ago

moomoo v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Moomoo.js

Control Moomoo.io clients through Node.js.

Installation

Install it with this NPM command:

npm install git+https://github.com/Nebula-Developers/Moomoo.js.git

Alternative, use Yarn:

yarn add https://github.com/Nebula-Developers/Moomoo.js

Usage

This module exports the client class and a utility function that allows you to get server information to connect with.

const moo = require("moomoo");

async function start() {
    const server = await moo.parseServerLink("http://moomoo.io/?server=8:21:0");

    const bot = moo.MoomooClient(server);
    bot.addEventListener("socketOpen", () => {
        bot.spawn();
    });
}
start();