Exemplo n.º 1
1
import * as sockjs from 'sockjs';
import * as http from 'http';
import * as stream from 'stream';

let server: sockjs.Server;
let serverOptions: sockjs.ServerOptions = {};

// createServer method
server = sockjs.createServer();
server = sockjs.createServer(serverOptions);

// installHandlers method
let httpServer: http.Server = http.createServer();
server.installHandlers(httpServer);
server.installHandlers(httpServer, serverOptions);

// serverOptions
serverOptions.sockjs_url = 'http://cdn.sockjs.org/sockjs-0.3.min.js';
serverOptions.prefix = '/prefix';
serverOptions.response_limit = 128000;
serverOptions.websocket = true;

serverOptions.jsessionid = true;
serverOptions.jsessionid = () => true;

serverOptions.log = (severity: string, message: string) => { };
serverOptions.heartbeat_delay = 25000;
serverOptions.disconnect_delay = 5000;

// Connection
let connection: sockjs.Connection;
Exemplo n.º 2
0
import * as express from 'express';
import * as http from 'http';
import * as path from 'path';
import * as sockjs from 'sockjs';

import {Clients} from './clients';
import {initGlobals} from './globals';

let sockjs_opts = {
	sockjs_url: 'http://cdn.jsdelivr.net/sockjs/1.0.1/sockjs.min.js'
};

let clients: Clients = new Clients();

initGlobals({
	clients: clients
});

let app = express();

app.use(express.static(path.resolve(__dirname, '..', 'web')));

let server = http.createServer();
server.on('request', app);

let wssClients = sockjs.createServer(sockjs_opts);
wssClients.installHandlers(server, {prefix: '/connect'});
wssClients.on('connection', clients.createConnection.bind(clients));

server.listen(19000, '0.0.0.0');
Exemplo n.º 3
0
var express = require('express');
var sockjs  = require('sockjs');
var http    = require('http');

// 1. Echo sockjs server
var sockjs_opts = {sockjs_url: "http://cdn.sockjs.org/sockjs-0.3.min.js"};

var sockjs_echo = sockjs.createServer(sockjs_opts);
sockjs_echo.on('connection', function(conn) {
    conn.on('data', function(message) {
        conn.write(message);
    });
});

// 2. Express server
var app = express(); /* express.createServer will not work here */
var server = http.createServer(app);

sockjs_echo.installHandlers(server, {prefix:'/echo'});

console.log(' [*] Listening on 0.0.0.0:9999' );
server.listen(9999, '0.0.0.0');

app.use(express.static(__dirname + "/public"))