Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/revolt-io/rest
- Owner: revolt-io
- License: apache-2.0
- Created: 2022-05-27T17:25:05.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-19T19:48:24.000Z (over 2 years ago)
- Last Synced: 2024-11-19T06:59:26.422Z (about 2 months ago)
- Topics: api, rest, revolt
- Language: TypeScript
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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)
```