A simple proxy server created for https://postwoman.io
icons | ||
libproxy | ||
notifier | ||
out | ||
resources | ||
.DS_Store | ||
.gitignore | ||
build.sh | ||
go.mod | ||
go.sum | ||
main.go | ||
README.md | ||
server | ||
server.go |
Postwoman Proxy
API request builder - Helps you create your requests faster, saving you precious time on your development.
A simple proxy server created by @NBTX for Postwoman and hosted by ApolloTV.
Demo 🚀
Building
These build scripts are for macOS/Linux systems. Currently, Windows build scripts have not yet been created.
- For macOS desktops:
$ ./build.sh darwin
- For Linux desktops:
$ ./build.sh linux
- For Windows desktops:
$ ./build.sh windows
- For servers:
$ go build server.go
Usage
To use the proxy on a server, clone the package and use:
$ ./server --host="<hostname>:<port>" --token="<token_or_blank>"
- The
host
andtoken
parameters are optional. The defaults are as follows: host
:localhost:9159
token
: blank; allowing anyone to access (see below)
NOTE: When the token is blank it will allow anybody to access your proxy server. This may be what you want, but do keep that in mind.