Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created October 24, 2017 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/5f19c8884de0e170a34c55b9c96032b7 to your computer and use it in GitHub Desktop.
Save Whateverable/5f19c8884de0e170a34c55b9c96032b7 to your computer and use it in GitHub Desktop.
greppable6
HTTP::Server::Tiny
File Code
TOKUHIROM/HTTP-Server-Tiny
…/META6.json :13:
"name" : "HTTP::Server::Tiny",
TOKUHIROM/HTTP-Server-Tiny
…/META6.json :16:
"HTTP::Server::Tiny" : "lib/HTTP/Server/Tiny.pm6"
TOKUHIROM/HTTP-Server-Tiny
…/README.md :6:
HTTP::Server::Tiny - a simple HTTP server for Perl6
TOKUHIROM/HTTP-Server-Tiny
…/README.md :11:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/README.md :20:
HTTP::Server::Tiny.new(:$host , :$port).run(sub ($env) {
TOKUHIROM/HTTP-Server-Tiny
…/README.md :34:
HTTP::Server::Tiny is a standalone HTTP/1.1 web server for perl6.
TOKUHIROM/HTTP-Server-Tiny
…/README.md :39:
* `HTTP::Server::Tiny.new($host, $port)`
TOKUHIROM/HTTP-Server-Tiny
…/http-server-tiny.pl6 :3:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/http-server-tiny.pl6 :7:
HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port).run(sub ($env) {
TOKUHIROM/HTTP-Server-Tiny
…/chan.pl6 :3:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/chan.pl6 :7:
HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port).run(sub ($env) {
TOKUHIROM/HTTP-Server-Tiny
…/hello.pl6 :3:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/hello.pl6 :7:
my $httpd = HTTP::Server::Tiny.new(
TOKUHIROM/HTTP-Server-Tiny
…/sleep.pl6 :3:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/sleep.pl6 :6:
my $httpd = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/synopsis :3:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/synopsis :12:
HTTP::Server::Tiny.new(:$host , :$port).run(sub ($env) {
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :2:
unit class HTTP::Server::Tiny:ver<0.0.1>;
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :80:
my class HTTP::Server::Tiny::Handler {
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :116:
my $handler = HTTP::Server::Tiny::Handler.new(
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :423:
has Str $.server-software = "HTTP::Server::Tiny";
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :510:
method run(HTTP::Server::Tiny:D: Callable $app, Promise :$control-promise = Promise.new) {
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :550:
my $handler = HTTP::Server::Tiny::Handler.new(
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :597:
HTTP::Server::Tiny - a simple HTTP server for Perl6
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :602:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :611:
HTTP::Server::Tiny.new(:$host , :$port).run(sub ($env) {
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :625:
HTTP::Server::Tiny is a standalone HTTP/1.1 web server for perl6.
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :629:
=item C<HTTP::Server::Tiny.new($host, $port)>
TOKUHIROM/HTTP-Server-Tiny
…/01-psgi.t :8:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/01-psgi.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/02-server.t :8:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/02-server.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/04-get.t :7:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/04-get.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/05-post.t :7:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/05-post.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/06-channel.t :7:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/06-channel.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/07-io-handle.t :8:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/07-io-handle.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/08-long-req.t :7:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/08-long-req.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/09-chunked-request.t :7:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/09-chunked-request.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/10-ise.t :6:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/10-ise.t :13:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/11-str.t :6:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/11-str.t :13:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/12-supply.t :7:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/12-supply.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/13-promise.t :9:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/13-promise.t :14:
HTTP::Server::Tiny.new(port => 11273).run(sub ($env) { }, :$control-promise);
TOKUHIROM/HTTP-Server-Tiny
…/14-error.t :6:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/14-error.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
TOKUHIROM/HTTP-Server-Tiny
…/15-p6w.t :8:
use HTTP::Server::Tiny;
TOKUHIROM/HTTP-Server-Tiny
…/15-p6w.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
UFOBAT/Bailador
…/Changes :69:
* tiny (HTTP::Server::Tiny)
UFOBAT/Bailador
…/bailador :42:
#
UFOBAT/Bailador
…/tiny.pm :8:
require HTTP::Server::Tiny;
UFOBAT/Bailador
…/tiny.pm :15:
given HTTP::Server::Tiny.new(:$host, :$port) {
Bailador/Bailador
…/Changes :72:
* tiny (HTTP::Server::Tiny)
Bailador/Bailador
…/bailador :42:
#
Bailador/Bailador
…/tiny.pm :8:
require HTTP::Server::Tiny;
Bailador/Bailador
…/tiny.pm :15:
given HTTP::Server::Tiny.new(:$host, :$port) {
jonathanstowe/EventSource-Server
…/README.md :3:
A simple handler to provide Server Sent Events from HTTP::Server::Tiny / Crust applications
jonathanstowe/EventSource-Server
…/README.md :13:
use HTTP::Server::Tiny;
jonathanstowe/EventSource-Server
…/README.md :21:
HTTP::Server::Tiny.new(port => 7798).run(&es)
jonathanstowe/EventSource-Server
…/README.md :43:
HTTP::Server::Tiny
jonathanstowe/EventSource-Server
…/README.md :8:
All of the examples require HTTP::Server::Tiny
jonathanstowe/EventSource-Server
…/README.md :11:
panda install HTTP::Server::Tiny
jonathanstowe/EventSource-Server
…/README.md :15:
zef install HTTP::Server::Tiny
jonathanstowe/EventSource-Server
…/amqp-bridge :4:
use HTTP::Server::Tiny;
jonathanstowe/EventSource-Server
…/amqp-bridge :24:
HTTP::Server::Tiny.new(port => 7798).run(&es)
jonathanstowe/EventSource-Server
…/tick-server :4:
use HTTP::Server::Tiny;
jonathanstowe/EventSource-Server
…/tick-server :12:
HTTP::Server::Tiny.new(port => 7798).run(&es)
jonathanstowe/EventSource-Server
…/Server.pm :7:
EventSource::Server - A simple handler to provide Server Sent Events from HTTP::Server::Tiny / Crust applications
jonathanstowe/EventSource-Server
…/Server.pm :15:
use HTTP::Server::Tiny;
jonathanstowe/EventSource-Server
…/Server.pm :21:
HTTP::Server::Tiny.new(port => 7798).run(&es)
jonathanstowe/EventSource-Server
…/Server.pm :45:
L<HTTP::Server::Tiny
jonathanstowe/Lumberjack-Application
…/META6.json :20:
"HTTP::Server::Tiny",
jonathanstowe/Lumberjack-Application
…/lumberjack-application :20:
default P6SGI container (HTTP::Server::Tiny) on a specified port.
jonathanstowe/Lumberjack-Application
…/Application.pm :22:
# HTTP::Server::Tiny.new(port => 8898).run($application);
jonathanstowe/Lumberjack-Application
…/Application.pm :37:
method (that starts up a C<HTTP::Server::Tiny> instance on the
jonathanstowe/Lumberjack-Application
…/Application.pm :54:
argument which is passed to the C<HTTP::Server::Tiny> if
jonathanstowe/Lumberjack-Application
…/Application.pm :67:
using the default C<HTTP::Server::Tiny> container. This is
jonathanstowe/Lumberjack-Application
…/Application.pm :86:
use HTTP::Server::Tiny;
jonathanstowe/Lumberjack-Application
…/Application.pm :117:
my $s = HTTP::Server::Tiny.new(port => 8898);
jonathanstowe/Lumberjack-Application
…/Index.pm :18:
HTTP::Server::Tiny.new(port => 8898).run(&app);
jonathanstowe/Lumberjack-Application
…/PSGI.pm :18:
HTTP::Server::Tiny.new(port => 8898).run(&app);
jonathanstowe/Lumberjack-Application
…/WebSocket.pm :23:
HTTP::Server::Tiny.new(port => 8898).run(&ws-app);
jonathanstowe/Lumberjack-Application
…/050-proxy.t :10:
use HTTP::Server::Tiny;
jonathanstowe/Lumberjack-Application
…/050-proxy.t :27:
my $s = HTTP::Server::Tiny.new(:$port);
jonathanstowe/META6
…/projects.json :6697:
"HTTP::Server::Tiny" : "lib/HTTP/Server/Tiny.pm6"
jonathanstowe/META6
…/projects.json :6703:
"name" : "HTTP::Server::Tiny",
jonathanstowe/META6
…/projects.json :6794:
"Crust::Handler::HTTP::Server::Tiny" : "lib/Crust/Handler/HTTP/Server/Tiny.pm6",
jonathanstowe/META6
…/projects.json :6827:
"HTTP::Server::Tiny",
jonathanstowe/META6
…/projects.json :7277:
"HTTP::Server::Tiny"
jonathanstowe/META6
…/projects.json :11228:
"HTTP::Server::Tiny",
scmorrison/uzu
…/META6.json :26:
"HTTP::Server::Tiny",
scmorrison/uzu
…/HTTP.pm6 :9:
use HTTP::Server::Tiny;
scmorrison/uzu
…/HTTP.pm6 :25:
HTTP::Server::Tiny.new(:$port).run(sub (%env) {
tokuhirom/p6-Crust
…/META6.json :8:
"HTTP::Server::Tiny",
tokuhirom/p6-Crust
…/META6.json :32:
"Crust::Handler::HTTP::Server::Tiny" : "lib/Crust/Handler/HTTP/Server/Tiny.pm6",
tokuhirom/p6-Crust
…/README.md :21:
Crust::Handler and its subclasses contains adapters for web servers. We have adapters for the built-in standalone web server HTTP::Easy::PSGI, and HTTP::Server::Tiny included in the core Crust distribution.
tokuhirom/p6-Crust
…/Crust.pm6 :25:
and HTTP::Server::Tiny included in the core Crust distribution.
tokuhirom/p6-Crust
…/Tiny.pm6 :3:
unit class Crust::Handler::HTTP::Server::Tiny;
tokuhirom/p6-Crust
…/Tiny.pm6 :5:
use HTTP::Server::Tiny;
tokuhirom/p6-Crust
…/Tiny.pm6 :13:
method run(Crust::Handler::HTTP::Server::Tiny:D: Callable $app) {
tokuhirom/p6-Crust
…/Tiny.pm6 :14:
my $httpd = HTTP::Server::Tiny.new(
tokuhirom/p6-Crust
…/Tiny.pm6 :22:
Crust::Handler::HTTP::Server::Tiny - Crust adapter for HTTP::Server::Tiny
tokuhirom/p6-Crust
…/Tiny.pm6 :26:
crustup -s HTTP::Server::Tiny app.p6w
tokuhirom/p6-Crust
…/Runner.pm6 :18:
has Str $!server = 'HTTP::Server::Tiny';
tokuhirom/p6-Crust
…/Runner.pm6 :24:
s => 'HTTP::Server::Tiny',
tokuhirom/p6-Crust
…/HTTP-Server-Tiny.t :6:
use Crust::Handler::HTTP::Server::Tiny;
tokuhirom/p6-Crust
…/HTTP-Server-Tiny.t :12:
my $handler = Crust::Handler::HTTP::Server::Tiny.new(
tokuhirom/p6-HTTP-Server-Tiny
…/META6.json :13:
"name" : "HTTP::Server::Tiny",
tokuhirom/p6-HTTP-Server-Tiny
…/META6.json :16:
"HTTP::Server::Tiny" : "lib/HTTP/Server/Tiny.pm6"
tokuhirom/p6-HTTP-Server-Tiny
…/README.md :6:
HTTP::Server::Tiny - a simple HTTP server for Perl6
tokuhirom/p6-HTTP-Server-Tiny
…/README.md :11:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/README.md :20:
HTTP::Server::Tiny.new(:$host , :$port).run(sub ($env) {
tokuhirom/p6-HTTP-Server-Tiny
…/README.md :34:
HTTP::Server::Tiny is a standalone HTTP/1.1 web server for perl6.
tokuhirom/p6-HTTP-Server-Tiny
…/README.md :39:
* `HTTP::Server::Tiny.new($host, $port)`
tokuhirom/p6-HTTP-Server-Tiny
…/http-server-tiny.pl6 :3:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/http-server-tiny.pl6 :7:
HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port).run(sub ($env) {
tokuhirom/p6-HTTP-Server-Tiny
…/chan.pl6 :3:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/chan.pl6 :7:
HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port).run(sub ($env) {
tokuhirom/p6-HTTP-Server-Tiny
…/hello.pl6 :3:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/hello.pl6 :7:
my $httpd = HTTP::Server::Tiny.new(
tokuhirom/p6-HTTP-Server-Tiny
…/sleep.pl6 :3:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/sleep.pl6 :6:
my $httpd = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/synopsis :3:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/synopsis :12:
HTTP::Server::Tiny.new(:$host , :$port).run(sub ($env) {
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :2:
unit class HTTP::Server::Tiny:ver<0.0.1>;
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :80:
my class HTTP::Server::Tiny::Handler {
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :116:
my $handler = HTTP::Server::Tiny::Handler.new(
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :416:
has Str $.server-software = "HTTP::Server::Tiny";
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :503:
method run(HTTP::Server::Tiny:D: Callable $app, Promise :$control-promise = Promise.new) {
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :543:
my $handler = HTTP::Server::Tiny::Handler.new(
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :589:
HTTP::Server::Tiny - a simple HTTP server for Perl6
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :594:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :603:
HTTP::Server::Tiny.new(:$host , :$port).run(sub ($env) {
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :617:
HTTP::Server::Tiny is a standalone HTTP/1.1 web server for perl6.
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :621:
=item C<HTTP::Server::Tiny.new($host, $port)>
tokuhirom/p6-HTTP-Server-Tiny
…/00-dependency-checking.t :8:
# This leads to users installing all dependancies OK but then failing module install due to HTTP::Server::Tiny's tests failing.
tokuhirom/p6-HTTP-Server-Tiny
…/01-psgi.t :8:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/01-psgi.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/02-server.t :8:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/02-server.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/04-get.t :7:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/04-get.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/05-post.t :7:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/05-post.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/06-channel.t :7:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/06-channel.t :14:
#my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/06-channel.t :29:
HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port).run(sub ($env) {
tokuhirom/p6-HTTP-Server-Tiny
…/07-io-handle.t :8:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/07-io-handle.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/08-long-req.t :7:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/08-long-req.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/09-chunked-request.t :7:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/09-chunked-request.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/10-ise.t :6:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/10-ise.t :13:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/11-str.t :6:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/11-str.t :13:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/12-supply.t :7:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/12-supply.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/13-promise.t :9:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/13-promise.t :14:
HTTP::Server::Tiny.new(port => 11273).run(sub ($env) { }, :$control-promise);
tokuhirom/p6-HTTP-Server-Tiny
…/14-error.t :6:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/14-error.t :14:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-HTTP-Server-Tiny
…/15-p6w.t :8:
use HTTP::Server::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/15-p6w.t :15:
my $server = HTTP::Server::Tiny.new(host => '127.0.0.1', port => $port);
tokuhirom/p6-Protocol-WebSocket
…/META6.json :32:
"HTTP::Server::Tiny"
tokuhirom/p6-Protocol-WebSocket
…/chat.pl6 :3:
use HTTP::Server::Tiny;
tokuhirom/p6-Protocol-WebSocket
…/chat.pl6 :13:
my $s = HTTP::Server::Tiny.new(port => $port);
tokuhirom/p6-Protocol-WebSocket
…/P6W.pm6 :129:
use HTTP::Server::Tiny;
tokuhirom/p6-Protocol-WebSocket
…/client-server.t :6:
use HTTP::Server::Tiny;
tokuhirom/p6-Protocol-WebSocket
…/client-server.t :34:
my $s = HTTP::Server::Tiny.new(port => $port);
tokuhirom/p6-Protocol-WebSocket
…/client-server.t :75:
# This behaviour seems to be related to HTTP::Server::Tiny
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment