A simple thread-based web server written in Erlang written as a learning project.
- A web server with basic functionality
- A beginner project in development (I'm always open for tips and suggestions!)
- Not optimal!
Compile webserver.erl with the erlang compiler at your own chosen way. For example, using the erlang shell:
-
Start the shell
-
Go to the folder containing webserver.erl using
cd("your/chosen/directory").
-
Compile the file using the c command
c(webserver).
-
Start the server by giving the command
webserver:start().