Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colinkiama/libsoup-test
Testing the libsoup Vala bindings by creating a basic server
https://github.com/colinkiama/libsoup-test
help libsoup server vala
Last synced: about 1 month ago
JSON representation
Testing the libsoup Vala bindings by creating a basic server
- Host: GitHub
- URL: https://github.com/colinkiama/libsoup-test
- Owner: colinkiama
- Created: 2021-10-02T21:33:00.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T09:35:58.000Z (12 months ago)
- Last Synced: 2024-10-12T18:52:19.521Z (2 months ago)
- Topics: help, libsoup, server, vala
- Language: Vala
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libsoup-test
A libsoup server test program.
It's based on the [Valadoc Soup.Server async example](https://valadoc.org/libsoup-2.4/Soup.Server.html) however, it uses the `server.listen` method instead of the `server.listen_all`.
## How to install
This project uses [meson](https://mesonbuild.com).Assuming that you're using meson with ninja, enter these commands terminal in the
root of the project:
```sh
meson build
cd build
ninja install
```Then you can run the server with this command:
```sh
libsoup-test
```If you want to uninstall the server, in the `build` directory of the project
enter this command in your terminal:
```sh
ninja uninstall
```