blob: 35d14115b5a3f8365a9a35a366bf2a3328693a6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import app from './app';
// Add any new real-time connection to the `everybody` channel
app.on('connection', connection =>
app.channel('everybody').join(connection)
);
// Publish all events to the `everybody` channel
app.publish(data => app.channel('everybody'));
app.listen(3030).on('listening', () =>
console.log('Feathers server listening on localhost:3030')
);
|