https://github.com/fabiokleis/rawhttp
Servidor http puro em erlang!
https://github.com/fabiokleis/rawhttp
erlang-otp hacktoberfest http http-server network-programming
Last synced: 12 months ago
JSON representation
Servidor http puro em erlang!
- Host: GitHub
- URL: https://github.com/fabiokleis/rawhttp
- Owner: Fabiokleis
- License: apache-2.0
- Created: 2024-06-07T00:06:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T03:21:02.000Z (over 1 year ago)
- Last Synced: 2025-04-04T11:46:48.834Z (12 months ago)
- Topics: erlang-otp, hacktoberfest, http, http-server, network-programming
- Language: Erlang
- Homepage:
- Size: 95.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
rawhttp
=====
Servidor Http puro em erlang!
suporta html, jpeg e png. %% por equanto...
Server
----
An OTP application.
Server env options, listening port and process pool size.
```erlang
[
{server, [{port, 8123}, {pool, 10}]}
].
```
Build
-----
$ rebar3 compile
Run
----
$ rebar shell
inside erlang shell run:
```
observer:start()
```
now you can check server application, supervisor and 10 child processes.
