Socket
Socket
Sign inDemoInstall

ksoft.js

Package Overview
Dependencies
1
Maintainers
2
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ksoft.js

Official Node.js Wrapper for the KSoft.Si API.


Version published
Weekly downloads
10
increased by66.67%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

ksoft.js

Documentation WIP.

This is the official Node.js Wrapper for the KSoft.Si API.

Usage

All API calls are async. You have to put them into an async function, and await them. Else, they will return a Promise.

Example:

const { KSoftClient } = require('ksoft.js');

const ksoft = new KSoftClient('your-very-nice-token');

async function test () {
	const aww = await ksoft.images.aww();
	message.send(aww.url);
}

test();

Ban Builder

For ksoft.bans.add, I have included a ban builder, which makes it considerably easier to send a ban request to KSoft.

API:

ban.setUser(id: Snowflake, name: String, discriminator: String);
ban.setReason(reason: String, proof: URL);
ban.setModerator(id: Snowflake);

Example:

const { Ban, KSoftClient } = require('ksoft.js');

const ksoft = new KSoftClient('your-very-nice-token');
const ban = new Ban()
	.setUser('123456789123456789', 'Wumpus', '0001')
	.setReason('Bad Raider', 'https://i.imgur.com/ban_em_already')
	.setModerator('102102717165506560');

ksoft.bans.add(ban);

APIs

Bans

Add Ban
ksoft.bans.add(ban: Ban);

Response:

Promise<{ success: true } | {success: false, message: '[error that occured]'}>

Get Ban Info
ksoft.bans.info(id: Snowflake);

Response:

Promise<Ban>

Keywords

FAQs

Last updated on 08 Oct 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc