You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
430 B
17 lines
430 B
const express = require('express');
|
|
const app = express();
|
|
const PORT = process.env.PORT || 3000;
|
|
const http = require('http').Server(app);
|
|
const socketserver = require('socket.io')(http);
|
|
|
|
app.use(express.static('public'));
|
|
|
|
socketserver.on('connection', function (socket) {
|
|
socket.emit('news', { hello: 'world' });
|
|
socket.on('my other event', function (data) {
|
|
console.log(data);
|
|
});
|
|
});
|
|
|
|
http.listen(PORT);
|