Skip to main content
Deno 2 is finally here 🎉️
Learn more

BlueFox

BlueFox API Wrapper for Deno.

Example

Get a server and shut down

import { Client } from "https://deno.land/x/bluefox/mod.ts";

const client = new Client("YOUR_AUTH_TOKEN");

const server = await client.getServer("server_id");
console.log(`Shutting down ${server.name}...`);
await server.stop();