Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arshavirmirzakhani/honey
portable and lightweight webserver built with c++
https://github.com/arshavirmirzakhani/honey
Last synced: about 2 months ago
JSON representation
portable and lightweight webserver built with c++
- Host: GitHub
- URL: https://github.com/arshavirmirzakhani/honey
- Owner: arshavirmirzakhani
- License: mit
- Created: 2023-12-24T18:48:00.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-24T20:37:16.000Z (about 1 year ago)
- Last Synced: 2024-05-21T08:26:18.134Z (8 months ago)
- Language: C++
- Homepage:
- Size: 295 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#honey
portable and lightweight webserver written in c++### what is honey?
honey is a multiplatform , lightweight and portable webserver that can be used to host files and websites,the webserver is configurable using lua file### how to use it?
1. first you need generate project files using [premake5](https://premake.github.io/) build system , and then compile the project files
2. then create a `.lua` file and write the configurations for it , here is an detailed example :
```
set_pattern_content("/hi","hello world!","text/plain")
-- this function set the content of the patternserver_listen("127.0.0.1",8080)
-- now lets start the server on localhost and port 8080
```
3. now start honey by this command :
```
honey
```
4. to make sure webserver works fine goto `localhost:8080/hi` and you should see the text `hello world!`