Set indent size

This commit is contained in:
Damien Broqua 2022-02-13 18:07:53 +01:00
parent 33c87b434c
commit 3ebdc9c06a
9 changed files with 143 additions and 155 deletions

View file

@ -4,54 +4,49 @@
* Module dependencies.
*/
import app from '../app';
import debugLib from 'debug';
import http from 'http';
import {port} from '../config';
import debugLib from "debug";
import http from "http";
import app from "../app";
import { port } from "../config";
const debug = debugLib('nodecdtheque:server');
const debug = debugLib("nodecdtheque:server");
const server = http.createServer(app);
server.listen(port);
server.on('error', onError);
server.on('listening', onListening);
/**
* Event listener for HTTP server "error" event.
* @param {*} error
*/
function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}
if (error.syscall !== "listen") {
throw error;
}
const bind = typeof port === 'string' ?
'Pipe ' + port :
'Port ' + port;
const bind = typeof port === "string" ? `Pipe ${port}` : `Port ${port}`;
// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
switch (error.code) {
case "EACCES":
console.error(`${bind} requires elevated privileges`);
process.exit(1);
break;
case "EADDRINUSE":
console.error(`${bind} is already in use`);
process.exit(1);
break;
default:
throw error;
}
}
/**
* 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);
const addr = server.address();
const bind =
typeof addr === "string" ? `pipe ${addr}` : `port ${addr.port}`;
debug(`Listening on ${bind}`);
}
server.listen(port);
server.on("error", onError);
server.on("listening", onListening);