Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/revolt-io/rest

REST module for revolt.io
https://github.com/revolt-io/rest

api rest revolt

Last synced: about 1 month ago
JSON representation

REST module for revolt.io

Awesome Lists containing this project

README

        

### REST

### Features
- [X] Lightweight
- [X] Typed Response
- [X] Deno Support
- [ ] Handles Rate Limit

### Usage
```ts
import { REST } from '@revoltio/rest'

const rest = new REST()

rest.setToken('revolt-token-here')

const res = await rest.get('/')

console.log(res)
```