const url = typeof process.env.url === 'string' ? process.env.url : new Error("Error Message")
if(url instanceof Error) {
throw url;
}
server.start(options, ({ port }) => console.log(`Server is running on http://localhost:${port}`));
Вы можете изменить Error Message
на любое сообщение, которое вам нужно, и оно сломает сервер (с ошибкой)
Без ошибки
const url = typeof process.env.url === 'string' ? process.env.url : null
if(!url) {
process.exit(0);
}
server.start(options, ({ port }) => console.log(`Server is running on http://localhost:${port}`));