An extension that inspiraed from ExpressJS on NodeJS, to have integrated web server with Yii application

Hi all,

I wanna share my current experiment on Yii Extension. It’s not ready yet, but most function already worked. You can find it on https://github.com/tyohan/YiiServ

Basically this extension inspired from ExpressJS a framework on NodeJS that can serve your application without need any web server running with it. So, using phpsocketdaemon at http://code.google.com/p/phpsocketdaemon/ I’m trying to build an extension for Yii Framework so we can run our Yii application without need any webserver.

Currently it’s can serve static file and handle GET request. Still not work on POST request because we need to fill $_POST variable with POST string parameter that came with HTTP request. Most of this work covered at https://github.com/tyohan/YiiServ/blob/master/yiiserv/YiiServClient.php

The repo still doesn’t have a good documentation because I don’t have much time to write it. The reason I wanna share is may be you guys have some feedback or may be you can fork and develop a better one. So feel free to leave any comment here.

Thanks

Maybe it will be useful for you: http://phpdaemon.net/

Wow… great… WIll consider it instead phpsocketdaemon.

Thanks,