Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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