Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: about 2 months ago
JSON representation

🔗 An example Gleam web application

Awesome Lists containing this project

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