From 890ac81ab868df5904d7fffcb59b461011372690 Mon Sep 17 00:00:00 2001 From: Dominik K Date: Mon, 29 May 2023 00:49:37 +0200 Subject: [PATCH] remove: port kill MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Finn Kötting <69923589+finnkoetting@users.noreply.github.com> --- src/index.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0b84842..bac364f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,17 +1,9 @@ /* Import packages */ import dotenv from "dotenv"; import express, { Express } from "express"; -import kill from "kill-port"; dotenv.config(); -// Kill process if port is in use -try { - kill(6543, "tcp"); -} catch (error) { - /* Empty */ -} - // Clear console console.clear();