diff options
Diffstat (limited to 'server.js')
-rw-r--r-- | server.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/server.js b/server.js new file mode 100644 index 0000000..61eb331 --- /dev/null +++ b/server.js @@ -0,0 +1,20 @@ +/* + * server.js + * Copyright (c) 2019, Texx + * License: MIT + * See https://github.com/texxme/Texx/blob/master/LICENSE + */ + +/** + * This script should only be used on a deployment server. + * For debugging purposes please use 'npm run dev' + */ +const PeerServer = require('peer').PeerServer; + +const server = PeerServer({ + debug: true, + port: 4242, + path: '/api', +}); + +server.on('connection', id => console.log(`New connection: ${id}`)); |