|
- #!/usr/bin/env node
-
- require('dotenv').config({
- path: `./env-files/${process.env.NODE_ENV || 'development'}.env`,
- });
-
- /**
- * Module dependencies.
- */
-
- const debug = require('debug')('express:www');
- const http = require('http');
- const app = require('../app');
- const logger = require('../logger');
-
- const { HTTP_HOST, PORT } = process.env;
-
- /**
- * Normalize a port into a number, string, or false.
- */
-
- function normalizePort(val) {
- const port = parseInt(val, 10);
-
- if (Number.isNaN(port)) {
- // named pipe
- return val;
- }
-
- if (port >= 0) {
- // port number
- return port;
- }
-
- return false;
- }
-
- /**
- * Get port from environment and store in Express.
- */
-
- const port = normalizePort(PORT || '14015');
- app.set('port', port);
-
- /**
- * Event listener for HTTP server "error" event.
- */
-
- function onError(error) {
- if (error.syscall !== 'listen') {
- throw error;
- }
-
- const bind = typeof port === 'string' ? `Pipe ${port}` : `Port ${port}`;
-
- // handle specific listen errors with friendly messages
- switch (error.code) {
- case 'EACCES':
- logger.error(`${bind} requires elevated privileges`);
- process.exit(1);
- break;
- case 'EADDRINUSE':
- logger.error(`${bind} is already in use`);
- process.exit(1);
- break;
- default:
- throw error;
- }
- }
-
- /**
- * Create HTTP server.
- */
-
- const server = http.createServer(app);
-
- /**
- * Event listener for HTTP server "listening" event.
- */
-
- function onListening() {
- const addr = server.address();
- const bind = typeof addr === 'string' ? `pipe ${addr}` : `port ${addr.port}`;
- debug(`Listening on ${bind}`);
- console.log(`Listening on ${bind}`);
- }
-
- process.on('uncaughtException', uncaughtException => {
- logger.error(
- 'Uncaught Exception at: %s - message: %s',
- uncaughtException.stack,
- uncaughtException.message
- );
- });
-
- process.on('unhandledRejection', reason => {
- logger.error('Unhandled Rejection at: %s - message: %s', reason.stack, reason.message);
- });
-
- /**
- * Listen on provided port, on all network interfaces.
- */
-
- server.listen(port, HTTP_HOST);
- server.on('error', onError);
- server.on('listening', onListening);
|