diff --git a/src/index.ts b/src/index.ts index 3c18f8f..6aacc17 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,11 +8,10 @@ console.log("Starting Server..."); const ARGS = getArgs(); const app = createServer(ARGS); -const server = app.listen(ARGS.port, function () { +export const server = app.listen(ARGS.port, function () { const port = server.address().port; console.log("Server started on port " + port); if (ARGS.open) { open('http://0.0.0.0:' + port); } }); -