diff options
author | Marvin Borner | 2018-10-25 19:00:34 +0200 |
---|---|---|
committer | Marvin Borner | 2018-10-25 19:00:34 +0200 |
commit | 185e0f26c6680c64cb5f2befdedd0cc3bbf09df5 (patch) | |
tree | 40e293a98eabb951863cfce7807e1268616963da /src/index.js |
Added file structure for featherjs
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..d68605b --- /dev/null +++ b/src/index.js @@ -0,0 +1,13 @@ +/* eslint-disable no-console */ +const logger = require('./logger'); +const app = require('./app'); +const port = app.get('port'); +const server = app.listen(port); + +process.on('unhandledRejection', (reason, p) => + logger.error('Unhandled Rejection at: Promise ', p, reason) +); + +server.on('listening', () => + logger.info('Feathers application started on http://%s:%d', app.get('host'), port) +); |