-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Facade for tink_web #108
Comments
Added bonus: if |
How often do people need to create a new web server in a given year? If not often, my opinion is seeing the plumbery for beginners in the main() function is rather a good thing. It trains familiarization with higher level plumbery rather than intimidating the user with porcelaine. In coconut we have nice porcelaine already and it’s awesome. But for tink_web? Think porcelaine routes are enough :) |
Plumbing and familiarizing should happen after a successful GET / => hello world though :) class Main {
@:get('/')
public function hello()
return 'hello world';
static function main()
tink.Web.serve(new Main());
} Or with #108 (comment) class Main {
@:get('/')
public function hello()
return 'hello world';
} |
It is not difficult at all to obtain a “hello world” with current tink_web. The selling point is strong already. Also when I see this short exemple i think it is weird to have a webserver running without specifying the port and more importantly the binding ip (think with NodeContainer it listens to all interfaces by default so like 0.0.0.0 and ipv6 too, but something like 127.0.0.1 would be a more sensible choice as it would make it unavailable from the LAN, especially if we combine that with an exposeApi and a beginner that may just expose stuffs this way, and who 1 month afterwards may not even have begun to realize that, potentially leaking stuffs in a cafe or whereever). If we go with the idea I think at least there should be a message when launching a server “Listening on :” and “Exposing Api thru ”. But nobody likes messages printed by a layer underneath and neither do I :) So changing to 127.0.0.1 by default and exposeApi:false maybe would be saner. But in the end I still don’t see who needs this facade API. |
Generally speaking, I also don't find this super useful or does it help tink_web gain more popularity. Especially when we need to consider the effort to build and maintain it. I would prefer putting the effort in something else.
|
To facilitate usage of tink_web (especially for newcomers), I propose putting a facade in
tink.Web
:Serving via
serve
The simplest usage should be this:
The recommended usage for when api and implementation are separate will be
(new RootImpl() : RootApi)
.With all the bells and whistles:
Each of the optional fields explained:
container
:Sys.args()
"PET_STORE"
port will beSys.getEnv("PET_STORE_PORT")
middlewares
: an array of HTTP middlewares that will all be applied to the routing handlergetSession
: if provided, routing uses an authed context,renderError
: will be used instead ofOutgoingResponse.reportError
exposeApi
(for later): will make the signatures of the router available on/
if some magic header is set ... we may also wish to make this the default.Remoting via
connect
The simplest usage:
All options:
Testing via
test
For creating a
LocalContainerClient
(and the whole container and handler it is connected to):The text was updated successfully, but these errors were encountered: