Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More โ†’
Socket
Sign inDemoInstall
Socket

@sapphire/plugin-api

Package Overview
Dependencies
Maintainers
3
Versions
790
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sapphire/plugin-api

Plugin for @sapphire/framework to expose a REST API

  • 2.1.5-next.3489b1d.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
747
decreased by-64.78%
Maintainers
3
Weekly downloads
ย 
Created
Source

Sapphire Logo

@sapphire/plugin-api

Plugin for @sapphire/framework to expose a REST API.

GitHub codecov npm bundle size npm Depfu

Description

This plugin provides an API endpoint for your bot that can be called from external services. A good exemplary use case for this is once your bot grows to have enough configuration options that you want to offer a website to your end-users to change those settings, and your website needs to interface with the bot for this to work.

Features

  • Fully ready for TypeScript!
  • Provides a Decorator-based API to make developing your routes easy!
  • Follows common REST standards.
  • Includes ESM ready entrypoint
  • Premade OAuth 2.0 endpoints

Installation

@sapphire/plugin-api depends on the following packages. Be sure to install these along with this package!

You can use the following command to install this package, or replace npm install with your package manager of choice.

npm install @sapphire/plugin-api @sapphire/framework @sapphire/pieces@1 discord.js discord-api-types

Usage

Start by importing the registration file in your project to use the plugin:

JavaScript

require('@sapphire/plugin-api/register');

TypeScript

import '@sapphire/plugin-api/register';

Then, you can use the following configuration options in your SapphireClient extension class or initializer. This will either be located in your new SapphireClient constructor call, or super in your constructor method if you use an extension class.

{
  auth: {
	// The application/client ID of your bot.
	// You can find this at https://discord.com/developers/applications
    id: '',
	// The client secret of your bot.
	// You can find this at https://discord.com/developers/applications
    secret: '',
	// The name of the authentication cookie.
    cookie: 'SAPPHIRE_AUTH',
	// The URL that users should be redirected to after a successful authentication
    redirect: '',
	// The scopes that should be given to the authentication.
    scopes: ['identify'],
	// Transformers to transform the raw data from Discord to a different structure.
    transformers: []
  },
  // The prefix for all routes, e.g. / or v1/.
  prefix: '',
  // The origin header to be set on every request at 'Access-Control-Allow-Origin.
  origin: '*',
  // Any options passed to the NodeJS "net" internal server.listen function
  // See https://nodejs.org/api/net.html#net_server_listen_options_callback
  listenOptions: {
	// The port the API will listen on.
    port: 4000
  }
}

API Documentation

For the full API documentation please refer to the TypeDoc generated documentation.

Buy us some doughnuts

Sapphire Community is and always will be open source, even if we don't get donations. That being said, we know there are amazing people who may still want to donate just to show their appreciation. Thank you very much in advance!

We accept donations through Open Collective, Ko-fi, Paypal, Patreon and GitHub Sponsorships. You can use the buttons below to donate through your method of choice.

Donate WithAddress
Open CollectiveClick Here
Ko-fiClick Here
PatreonClick Here
PayPalClick Here

Contributors โœจ

Thanks goes to these wonderful people (emoji key):


Jeroen Claassens

๐Ÿ’ป ๐Ÿš‡ ๐Ÿ“†

Nejc Drobnic

๐Ÿ’ป ๐Ÿ“–

Antonio Romรกn

๐Ÿ’ป

Vlad Frangu

๐Ÿ‘€

depfu[bot]

๐Ÿšง

dependabot[bot]

๐Ÿšง

allcontributors[bot]

๐Ÿ“–

Tyler J Russell

๐Ÿ’ป

Stitch07

๐Ÿ’ป ๐Ÿ›

PlatinBae

๐Ÿ“–

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Package last updated on 07 Jun 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc