-
-
07 Dec 2018 12:02:52 UTC
- Distribution: SockJS
- Module version: 0.10
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (1)
- Testers (317 / 0 / 0)
- Kwalitee
Bus factor: 1- 79.05% Coverage
- License: artistic_2
- Activity
24 month- Tools
- Download (143.25KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
SockJS - SockJS Perl implementation
SYNOPSIS
use Plack::Builder; use SockJS; builder { mount '/echo' => SockJS->new( handler => sub { my ($session) = @_; $session->on( 'data' => sub { my $session = shift; $session->write(@_); } ); }; ); };
DESCRIPTION
SockJS is a Perl implementation of http://sockjs.org.
WARNINGS
When using Twiggy there is no chunked support, thus try my fork http://github.com/vti/Twiggy.
EXAMPLE
See
example/
directory.DEVELOPMENT
Repository
http://github.com/vti/sockjs-perl
CREDITS
Matthew Lien (github/BlueT)
Mohammad S Anwar (github/manwar)
AUTHOR
Viacheslav Tykhanovskyi,
vti@cpan.org
.COPYRIGHT AND LICENSE
Copyright (C) 2013-2018, Viacheslav Tykhanovskyi
This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.
Module Install Instructions
To install SockJS, copy and paste the appropriate command in to your terminal.
cpanm SockJS
perl -MCPAN -e shell install SockJS
For more information on module installation, please visit the detailed CPAN module installation guide.