Dart Server Side: Where are the advantage of using Shelf rather than IO as a Web Server? -
i want use rpc library develop dart server side restful. in library repository, bring 2 exemples how use (https://github.com/dart-lang/rpc-examples/tree/master/bin): shelf , io.
i understand better differences between shelf , io. advantage of using shelf rather io web server?
shelf modular framework server application. shelf built on top of dart:io
. there quite few packages available shelf (from dart team , 3rd-party) make quite easy build complex server applications.
if prefer build own solution use dart:io
directly.
Comments
Post a Comment