/dashactyl-ts

A flexible API wrapper for Dashactyl in TypeScript

Primary LanguageTypeScriptMIT LicenseMIT

dashactyl-tsvotion-logo

A wrapper for Dashactyl by Votion Development.


Features

  • Extensive class-based structure
  • Supports Dashactyl v2
  • Works with JavaScript

Installing

This package is not available on NPM yet, but it can be installed with this command:

npm install git+https://github.com/devnote-dev/dashactyl-ts

Usage

// With TypeScript
import Client from 'dashactyl-ts';

// With JavaScript
const Client = require('dashactyl-ts');

// Initialising
const client = new Client(
    'your.dashactyl.domain',
    'dashactyl_api_key'
);

// Making requests
client.users.fetch(5).then(console.log);

Documentation

Coming soon...


This repository is managed under the MIT license.

© 2021-2022 devnote-dev