aboutsummaryrefslogtreecommitdiffhomepage
path: root/server.js
diff options
context:
space:
mode:
Diffstat (limited to 'server.js')
-rw-r--r--server.js20
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}`));