forked from maoberlehner/distributed-vue-applications-pushing-content-and-component-updates-to-the-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (40 loc) · 1.15 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const express = require(`express`);
const path = require(`path`);
const webSocket = require(`ws`);
const http = require(`http`);
const news = require(`./data/news.json`);
const news1Update = require(`./data/news-1-update.json`);
const news3add = require(`./data/news-3-add.json`);
const PORT = 8200;
const app = express();
app.use((req, res, next) => {
res.header(`Access-Control-Allow-Origin`, `*`);
res.header(`Access-Control-Allow-Headers`, `Origin, X-Requested-With, Content-Type, Accept`);
next();
});
app.use(express.static(path.resolve(__dirname, `components`), {
maxAge: `365d`,
}));
app.get(`/news`, (req, res) => {
res.send(news);
});
const server = http.createServer(app);
const wss = new webSocket.Server({
path: `/ws`,
server,
});
const ADD = JSON.stringify({
type: `ADD`,
entity: news3add,
});
const UPDATE = JSON.stringify({
type: `UPDATE`,
entity: news1Update,
});
wss.on(`connection`, (ws) => {
setInterval(() => ws.send(ADD), 5000);
setTimeout(() => setInterval(() => ws.send(UPDATE), 5000), 2500);
});
server.listen(PORT);
// eslint-disable-next-line no-console
console.log(`Listening on: http://localhost:${PORT}`);