2021-01-29 02:40:52 +02:00
|
|
|
const http = require('http');
|
|
|
|
|
2021-01-26 12:04:53 +02:00
|
|
|
const Wormhole = require('../index');
|
|
|
|
|
2021-01-29 02:40:52 +02:00
|
|
|
const httpServer = http.createServer();
|
|
|
|
|
|
|
|
const wormhole = new Wormhole({ urls: [ '/hello' ], httpServer });
|
|
|
|
|
|
|
|
wormhole.on('connect', ({ socket, accept, reject }) => {
|
|
|
|
accept();
|
2021-02-03 02:18:28 +02:00
|
|
|
socket.sendText('hello');
|
2021-01-29 02:40:52 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
httpServer.listen(8080);
|