Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gleam-lang/example-echo-server
🔗 An example Gleam web application
https://github.com/gleam-lang/example-echo-server
example gleam web-application
Last synced: 27 days ago
JSON representation
🔗 An example Gleam web application
- Host: GitHub
- URL: https://github.com/gleam-lang/example-echo-server
- Owner: gleam-lang
- License: apache-2.0
- Created: 2019-03-23T17:27:41.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-29T20:59:30.000Z (9 months ago)
- Last Synced: 2024-08-03T04:08:52.512Z (4 months ago)
- Topics: example, gleam, web-application
- Language: Gleam
- Homepage:
- Size: 59.6 KB
- Stars: 76
- Watchers: 6
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-gleam - gleam-lang/example-echo-server - An example Gleam web application. (Projects / Web applications)
README
# Echo
A tiny echo server written in Gleam! It'll reply with any body posted to
`/echo`.More importantly it's also an example web application written in the
[Gleam](https://gleam.run) programming language!## Run
```sh
# Start the web server locally
gleam run# Send a request to the server
curl -X POST -d 'Hello, Gleam!' http://localhost:3000/echo
```