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

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.

Awesome Lists containing this project

README

          

# Text Rest Client

![](https://github.com/harehare/textrestclient/workflows/build/badge.svg?branch=master)

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

![](screenshots/main.png)

## 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