https://github.com/harehare/textrestclient
Text Rest Client is a REST client, built on top of Flutter.
https://github.com/harehare/textrestclient
api-client
Last synced: 6 months ago
JSON representation
Text Rest Client is a REST client, built on top of Flutter.
- Host: GitHub
- URL: https://github.com/harehare/textrestclient
- Owner: harehare
- Created: 2020-01-04T03:46:10.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-13T13:09:11.000Z (almost 6 years ago)
- Last Synced: 2025-06-13T07:03:10.379Z (7 months ago)
- Topics: api-client
- Language: Dart
- Homepage: https://textrestclient.web.app
- Size: 577 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Text Rest Client

Text Rest Client is a REST client, built on top of Flutter.

## Features
- Send multiple requests from text or selected text
### Methods
- GET
- HEAD
- POST
- PUT
- DELETE
- CONNECT
- OPTIONS
- TRACE
- PATCH
## Example
```
# GET Example
get https://httpbin.org/get
{}
test
# POST Example
post https://httpbin.org/post
{"content-type": "application/json"}
{
"test": 0
}
```
## TODO :construction:
- [ ] Add Code highlight to text editor
- [ ] Add Request history
- [ ] Add Collection
- [ ] Add Environment variable
- [ ] Offline support(PWA)
- [ ] Support Android
- [ ] Support MacOS
- [ ] Support Windows