-
Notifications
You must be signed in to change notification settings - Fork 8
/
README
35 lines (28 loc) · 977 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
NAME
Web::Hippie - Web toolkit for the long hair, or comet
SYNOPSIS
use Plack::Builder;
builder {
mount '/_hippie' => builder {
enable "+Web::Hippie";
sub { my $env = shift;
my $args = $env->{'hippie.args'};
my $handle = $env->{'hippie.handle'};
# Your handler based on PATH_INFO: /init, /error, /message
}
};
mount '/' => my $app;
};
DESCRIPTION
Web::Hippie provides unified persistent and streamy communication
channel over HTTP via websocket (bidirectional) or mxhr
(uni-directional) for your <PSGI> application. See Web::Hippie::Pipe for
unified bidirectional abstraction with message bus.
SEE ALSO
Web::Hippie::Pipe, Web::Hippie::App::JSFiles
AUTHOR
Chia-liang Kao <[email protected]>
LICENSE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
SEE ALSO