https://github.com/rgee0/dymo
Simple domain name reversal OpenFaaS function running on the OpenFaaS Cloud Community Cluster.
https://github.com/rgee0/dymo
openfaas openfaas-cloud serverless
Last synced: 7 months ago
JSON representation
Simple domain name reversal OpenFaaS function running on the OpenFaaS Cloud Community Cluster.
- Host: GitHub
- URL: https://github.com/rgee0/dymo
- Owner: rgee0
- License: mit
- Created: 2019-01-07T17:46:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-21T12:43:50.000Z (about 5 years ago)
- Last Synced: 2023-03-06T03:09:36.264Z (over 2 years ago)
- Topics: openfaas, openfaas-cloud, serverless
- Language: Go
- Homepage: https://rgee0.o6s.io/dymo
- Size: 6.84 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dymo
[](https://www.openfaas.com)
A simple domain name reversal function.
# Invoke the function
```sh
$ curl https://rgee0.o6s.io/dymo -d 'rgee0.o6s.io'
io.o6s.rgee0
```The function will also accommodate http:// and https:// schemes:
```sh
$ curl https://rgee0.o6s.io/dymo -d 'https://rgee0.o6s.io'
io.o6s.rgee0
```And strip tailing paths:
```sh
$ curl https://rgee0.o6s.io/dymo -d 'https://rgee0.o6s.io/dymo/makes/labels'
io.o6s.rgee0
```