diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-06-09 14:26:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 14:26:22 +0300 |
commit | bd36aeb53d04a13167925ecd4d5d73ed2ad09914 (patch) | |
tree | 5bc0a1e78cf72c6e1ae48f5ee3954511748c81b1 /index.ts | |
parent | abe7c3220c40031b9adecf9b27ab7141b7d3f736 (diff) | |
parent | e9d0438f6c02664c652a593c686564361fa0de6b (diff) | |
download | which-api-bd36aeb53d04a13167925ecd4d5d73ed2ad09914.tar.gz |
Merge pull request #2 from eug-vs/refactor
Structurize feathers app
Diffstat (limited to 'index.ts')
-rw-r--r-- | index.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..35d1411 --- /dev/null +++ b/index.ts @@ -0,0 +1,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') +); + |