Re: Serverino 0.3.0 - now with windows support

2022-10-28 Thread Imperatorn via Digitalmars-d-announce

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


👍


Re: Serverino 0.3.0 - now with windows support

2022-10-28 Thread Andrea Fontana via Digitalmars-d-announce

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


Re: Serverino 0.3.0 - now with windows support

2022-10-28 Thread Imperatorn via Digitalmars-d-announce

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


Re: Serverino 0.3.0 - now with windows support

2022-10-28 Thread Andrea Fontana via Digitalmars-d-announce

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 :)


Re: Serverino 0.3.0 - now with windows support

2022-10-27 Thread Imperatorn via Digitalmars-d-announce

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


Serverino 0.3.0 - now with windows support

2022-10-16 Thread Andrea Fontana via Digitalmars-d-announce

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