https://github.com/revolt-io/rest
REST module for revolt.io
https://github.com/revolt-io/rest
api rest revolt
Last synced: over 1 year 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 (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-19T19:48:24.000Z (about 4 years ago)
- Last Synced: 2025-03-18T16:58:23.157Z (over 1 year 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)
```