Thread overview
Serverino 0.3.0 - now with windows support
Oct 16, 2022
Andrea Fontana
Oct 27, 2022
Imperatorn
Oct 28, 2022
Andrea Fontana
Oct 28, 2022
Imperatorn
Oct 28, 2022
Andrea Fontana
Oct 28, 2022
Imperatorn
October 16, 2022

Hello there.

I've just released a new version of serverino, a simple and ready-to-go http server with zero external dependencies (pure D!).

I changed a lot of things under the hood from the last version and tests are welcome.

It works on linux, macos and windows. I use only linux, so I didn't test so much on other platforms.

I started the project since we need a fast and easy way to setup a server for services, small websites or simply to do some tests on the browser and this is its main focus (but don't worry: it can handle several thousands of requests for seconds)

To start a new website just write:

dub init test_serverino -t serverino
cd test_serverino
dub

And you're done.

More info here: https://github.com/trikko/serverino

Andrea

October 27, 2022

On Sunday, 16 October 2022 at 19:49:08 UTC, Andrea Fontana wrote:

>

Hello there.

I've just released a new version of serverino, a simple and ready-to-go http server with zero external dependencies (pure D!).

I changed a lot of things under the hood from the last version and tests are welcome.

It works on linux, macos and windows. I use only linux, so I didn't test so much on other platforms.

I started the project since we need a fast and easy way to setup a server for services, small websites or simply to do some tests on the browser and this is its main focus (but don't worry: it can handle several thousands of requests for seconds)

To start a new website just write:

dub init test_serverino -t serverino
cd test_serverino
dub

And you're done.

More info here: https://github.com/trikko/serverino

Andrea

Nice, sometimes you just need some quick and dirty http

October 28, 2022

On Thursday, 27 October 2022 at 19:46:47 UTC, Imperatorn wrote:

>

Nice, sometimes you just need some quick and dirty http

That's exactly one of the use cases :)

October 28, 2022

On Friday, 28 October 2022 at 07:42:26 UTC, Andrea Fontana wrote:

>

On Thursday, 27 October 2022 at 19:46:47 UTC, Imperatorn wrote:

>

Nice, sometimes you just need some quick and dirty http

That's exactly one of the use cases :)

I'm on Windows 10 and your three-liner just worked, thanks

October 28, 2022

On Friday, 28 October 2022 at 09:25:11 UTC, Imperatorn wrote:

>

On Friday, 28 October 2022 at 07:42:26 UTC, Andrea Fontana wrote:

>

On Thursday, 27 October 2022 at 19:46:47 UTC, Imperatorn wrote:

>

Nice, sometimes you just need some quick and dirty http

That's exactly one of the use cases :)

I'm on Windows 10 and your three-liner just worked, thanks

Good to know. I have no windows machine, but unit-tests passed on github :)
Anyway if you see something strange, keep me posted on github!

Andrea

October 28, 2022

On Friday, 28 October 2022 at 09:30:21 UTC, Andrea Fontana wrote:

>

On Friday, 28 October 2022 at 09:25:11 UTC, Imperatorn wrote:

>

On Friday, 28 October 2022 at 07:42:26 UTC, Andrea Fontana wrote:

>

On Thursday, 27 October 2022 at 19:46:47 UTC, Imperatorn wrote:

>

Nice, sometimes you just need some quick and dirty http

That's exactly one of the use cases :)

I'm on Windows 10 and your three-liner just worked, thanks

Good to know. I have no windows machine, but unit-tests passed on github :)
Anyway if you see something strange, keep me posted on github!

Andrea

👍