vacex

A wrapper for the VACEfron API in TypeScript.

Usage no npm install needed!

<script type="module">
  import vacex from 'https://cdn.skypack.dev/vacex';
</script>

README

A wrapper for the VACEfron API in TypeScript.

Installation

With pnpm (recommended):

pnpm add vacefron

With npm:

npm i vacefron

With yarn:

yarn add vacefron

Example usages

Basic

const { VACEFronJS } = require('vacefron');
const vacefron = new VACEFronJS();

(async () => {
    const buffer = await vacefron.water('text');
    console.log(buffer);
})();

Discord

const { Client, MessageAttachment } = require('discord.js');
const client = new Client();

const { VACEFronJS } = require('vacefron');
const vacefron = new VACEFronJS();

client.on('message', async message => {
    if (message.content === '!iamspeed') {
        const buffer = await vacefron.iAmSpeed(message.author.displayAvatarURL());
        const attachment = new MessageAttachment(buffer, 'iamspeed.png');
    
        return message.channel.send(attachment);
    }   
});

client.login('token');

Other wrappers

Support

Discord server

Contributing

Anyone can contribute! Please just make them merge-worthy changes.