UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

30 lines (24 loc) 611 B
'use strict' var WebSocketServer = require('ws').Server var stream = require('./stream') class Server extends WebSocketServer{ constructor(opts, cb) { super(opts) var proxied = false this.on('newListener', function(event) { if (!proxied && event === 'stream') { proxied = true this.on('connection', function(conn, req) { this.emit('stream', stream(conn, opts), req) }) } }) if (cb) { this.on('stream', cb) } } } module.exports.Server = Server module.exports.createServer = function(opts, cb) { return new Server(opts, cb) }