# stoat.js   **stoat.js** is a JavaScript library for interacting with the Stoat API ## Requirements To use this module, you must be using at least: - Node.js v22.15.0 (LTS) in ES module mode - **or** Deno v2.2 (LTS) ## Example Usage ```javascript import { Client } from "stoat.js"; let client = new Client(); client.on("ready", async () => console.info(`Logged in as ${client.user.username}!`), ); client.on("messageCreate", async (message) => { if (message.content === "hello") { message.channel.sendMessage("world"); } }); client.loginBot(".."); ``` ## Reactivity with Signals & Solid.js Primitives All objects have reactivity built-in and can be dropped straight into any Solid.js project. ```tsx const client = new Client(); // initialise the client function MyApp() { return (