All Projects → vti → sockjs-perl

vti / sockjs-perl

Licence: other
SockJS Perl Plack/PSGI implementation

Programming Languages

perl
6916 projects
HTML
75241 projects

Labels

Projects that are alternatives of or similar to sockjs-perl

analytics-platform-shiny-server
Analytics Platform Shiny Server
Stars: ✭ 21 (+0%)
Mutual labels:  sockjs
nodefony
nodefony core framework
Stars: ✭ 19 (-9.52%)
Mutual labels:  sockjs
vertx-ddns
基于 Vert.x 的 DDNS 解决方案。自动更新域名解析到本机IP, 支持的DNS服务商: Alidns(阿里云) 、 Dnspod(腾讯云) 、Cloudflare、华为云
Stars: ✭ 126 (+500%)
Mutual labels:  sockjs
ng-stomp
📑 STOMP for AngularJS
Stars: ✭ 42 (+100%)
Mutual labels:  sockjs
Sockjs Node
WebSocket emulation - Node.js server
Stars: ✭ 1,987 (+9361.9%)
Mutual labels:  sockjs
Sockjs Client
WebSocket emulation - Javascript client
Stars: ✭ 7,808 (+37080.95%)
Mutual labels:  sockjs
Centrifugo
Scalable real-time messaging server in a language-agnostic way. Set up once and forever.
Stars: ✭ 5,649 (+26800%)
Mutual labels:  sockjs
Primus
⚡ Primus, the creator god of the transformers & an abstraction layer for real-time to prevent module lock-in.
Stars: ✭ 4,302 (+20385.71%)
Mutual labels:  sockjs
sockjs-cyclone
SockJS server support for the Cyclone web server
Stars: ✭ 26 (+23.81%)
Mutual labels:  sockjs
spring-websocket-template
Template project for configuring websockets with spring
Stars: ✭ 32 (+52.38%)
Mutual labels:  sockjs
play2-sockjs
A SockJS server implementation for Play Framework.
Stars: ✭ 60 (+185.71%)
Mutual labels:  sockjs
ng2-STOMP-Over-WebSocket
STOMP Over WebSocket service for angular2
Stars: ✭ 35 (+66.67%)
Mutual labels:  sockjs
spring-websocket-angular6
Example for using Spring Websocket and Angular with Stomp Messaging
Stars: ✭ 18 (-14.29%)
Mutual labels:  sockjs
demo-spring-websocket
'WebSockets with Spring: HTTP and WebSocket; WebSocket with SockJS fallback; STOMP over WebSocket' articles and source code.
Stars: ✭ 30 (+42.86%)
Mutual labels:  sockjs
spring-boot-vuejs-websockets
✔️ Simple spring-boot vue.js app with websockets and docker support
Stars: ✭ 30 (+42.86%)
Mutual labels:  sockjs
atom-bomberman-frontend
Frontend for Bomberman game in atom java course
Stars: ✭ 14 (-33.33%)
Mutual labels:  sockjs
messaging-polyglot
RabbitMQ Messaging Polyglot with Java, ColdFusion, CommandBox, Groovy and more
Stars: ✭ 18 (-14.29%)
Mutual labels:  sockjs

Build Status MetaCPAN Release Kritika Status Kritika Status Kritika Status

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, [email protected].

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].