move to an env files, update depends
This commit is contained in:
parent
d0e9e15e97
commit
5687fb4bec
6 changed files with 80 additions and 23 deletions
3
.env
Normal file
3
.env
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# NODE_ENV=development
|
||||||
|
HOST=0.0.0.0
|
||||||
|
PORT=8080
|
|
@ -1,7 +1,7 @@
|
||||||
export const environment: Environment = {
|
export const environment: Environment = {
|
||||||
port: 6600,
|
port: parseInt(process.env.PORT || "8080", 10),
|
||||||
host: "127.0.0.1",
|
host: process.env.HOST || "0.0.0.0",
|
||||||
development:
|
development:
|
||||||
process.argv.includes("--dev") ||
|
process.env.NODE_ENV === "development" ||
|
||||||
process.argv.includes("--development"),
|
process.argv.includes("--dev"),
|
||||||
};
|
};
|
||||||
|
|
12
package.json
12
package.json
|
@ -10,13 +10,13 @@
|
||||||
"cleanup": "rm -rf logs node_modules bun.lockdb"
|
"cleanup": "rm -rf logs node_modules bun.lockdb"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.17.0",
|
"@eslint/js": "^9.18.0",
|
||||||
"@types/bun": "^1.1.14",
|
"@types/bun": "^1.1.16",
|
||||||
"@types/ejs": "^3.1.5",
|
"@types/ejs": "^3.1.5",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.18.1",
|
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
||||||
"@typescript-eslint/parser": "^8.18.1",
|
"@typescript-eslint/parser": "^8.20.0",
|
||||||
"eslint": "^9.17.0",
|
"eslint": "^9.18.0",
|
||||||
"eslint-plugin-prettier": "^5.2.1",
|
"eslint-plugin-prettier": "^5.2.2",
|
||||||
"eslint-plugin-promise": "^7.2.1",
|
"eslint-plugin-promise": "^7.2.1",
|
||||||
"eslint-plugin-simple-import-sort": "^12.1.1",
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
||||||
"eslint-plugin-unicorn": "^56.0.1",
|
"eslint-plugin-unicorn": "^56.0.1",
|
||||||
|
|
|
@ -157,6 +157,33 @@ class Logger {
|
||||||
this.writeConsoleMessageColored(logMessageParts, breakLine);
|
this.writeConsoleMessageColored(logMessageParts, breakLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public custom(
|
||||||
|
bracketMessage: string,
|
||||||
|
bracketMessage2: string,
|
||||||
|
message: string | string[],
|
||||||
|
color: string,
|
||||||
|
breakLine: boolean = false,
|
||||||
|
): void {
|
||||||
|
const stack: string = new Error().stack || "";
|
||||||
|
const { timestamp } = this.getCallerInfo(stack);
|
||||||
|
|
||||||
|
const joinedMessage: string = Array.isArray(message)
|
||||||
|
? message.join(" ")
|
||||||
|
: message;
|
||||||
|
|
||||||
|
const logMessageParts: ILogMessageParts = {
|
||||||
|
readableTimestamp: { value: timestamp, color: "90" },
|
||||||
|
level: { value: bracketMessage, color },
|
||||||
|
filename: { value: `${bracketMessage2}`, color: "36" },
|
||||||
|
message: { value: joinedMessage, color: "0" },
|
||||||
|
};
|
||||||
|
|
||||||
|
this.writeToLog(
|
||||||
|
`${timestamp} ${bracketMessage} (${bracketMessage2}) ${joinedMessage}`,
|
||||||
|
);
|
||||||
|
this.writeConsoleMessageColored(logMessageParts, breakLine);
|
||||||
|
}
|
||||||
|
|
||||||
private writeConsoleMessageColored(
|
private writeConsoleMessageColored(
|
||||||
logMessageParts: ILogMessageParts,
|
logMessageParts: ILogMessageParts,
|
||||||
breakLine: boolean = false,
|
breakLine: boolean = false,
|
||||||
|
|
|
@ -6,7 +6,6 @@ import {
|
||||||
type MatchedRoute,
|
type MatchedRoute,
|
||||||
type Serve,
|
type Serve,
|
||||||
} from "bun";
|
} from "bun";
|
||||||
import { platform } from "os";
|
|
||||||
import { resolve } from "path";
|
import { resolve } from "path";
|
||||||
|
|
||||||
class ServerHandler {
|
class ServerHandler {
|
||||||
|
@ -57,15 +56,11 @@ class ServerHandler {
|
||||||
let filePath: string;
|
let filePath: string;
|
||||||
|
|
||||||
if (pathname === "/favicon.ico") {
|
if (pathname === "/favicon.ico") {
|
||||||
filePath = resolve("./public/assets/favicon.ico");
|
filePath = resolve("public", "assets", "favicon.ico");
|
||||||
} else {
|
} else {
|
||||||
filePath = resolve(`.${pathname}`);
|
filePath = resolve(`.${pathname}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (platform() === "win32") {
|
|
||||||
filePath = filePath.replace(/\//g, "\\");
|
|
||||||
}
|
|
||||||
|
|
||||||
const file: BunFile = Bun.file(filePath);
|
const file: BunFile = Bun.file(filePath);
|
||||||
|
|
||||||
if (await file.exists()) {
|
if (await file.exists()) {
|
||||||
|
@ -88,9 +83,11 @@ class ServerHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
private async handleRequest(
|
private async handleRequest(
|
||||||
request: Request,
|
request: ExtendedRequest,
|
||||||
server: BunServer,
|
server: BunServer,
|
||||||
): Promise<Response> {
|
): Promise<Response> {
|
||||||
|
request.startPerf = performance.now();
|
||||||
|
|
||||||
const pathname: string = new URL(request.url).pathname;
|
const pathname: string = new URL(request.url).pathname;
|
||||||
if (pathname.startsWith("/public") || pathname === "/favicon.ico") {
|
if (pathname.startsWith("/public") || pathname === "/favicon.ico") {
|
||||||
return await this.serveStaticFile(pathname);
|
return await this.serveStaticFile(pathname);
|
||||||
|
@ -136,7 +133,7 @@ class ServerHandler {
|
||||||
{
|
{
|
||||||
success: false,
|
success: false,
|
||||||
code: 405,
|
code: 405,
|
||||||
error: `Method ${request.method} Not Allowed`,
|
error: `Method ${request.method} Not Allowed, expected ${routeModule.routeDef.method}`,
|
||||||
},
|
},
|
||||||
{ status: 405 },
|
{ status: 405 },
|
||||||
);
|
);
|
||||||
|
@ -153,7 +150,7 @@ class ServerHandler {
|
||||||
{
|
{
|
||||||
success: false,
|
success: false,
|
||||||
code: 406,
|
code: 406,
|
||||||
error: `Content-Type ${contentType} Not Acceptable`,
|
error: `Content-Type ${contentType} Not Acceptable, expected ${expectedContentType}`,
|
||||||
},
|
},
|
||||||
{ status: 406 },
|
{ status: 406 },
|
||||||
);
|
);
|
||||||
|
@ -166,12 +163,14 @@ class ServerHandler {
|
||||||
params,
|
params,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (routeModule.routeDef.returns !== "*/*") {
|
||||||
response.headers.set(
|
response.headers.set(
|
||||||
"Content-Type",
|
"Content-Type",
|
||||||
routeModule.routeDef.returns,
|
routeModule.routeDef.returns,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} catch (error: unknown) {
|
} catch (error: unknown) {
|
||||||
logger.error(`Error handling route ${request.url}:`);
|
logger.error(`Error handling route ${request.url}:`);
|
||||||
logger.error(error as Error);
|
logger.error(error as Error);
|
||||||
|
@ -196,6 +195,30 @@ class ServerHandler {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
queueMicrotask(() => {
|
||||||
|
const headers: Headers = response.headers;
|
||||||
|
let ip: string | null = server.requestIP(request)?.address || null;
|
||||||
|
|
||||||
|
if (!ip) {
|
||||||
|
ip =
|
||||||
|
headers.get("CF-Connecting-IP") ||
|
||||||
|
headers.get("X-Real-IP") ||
|
||||||
|
headers.get("X-Forwarded-For") ||
|
||||||
|
null;
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.custom(
|
||||||
|
`[${request.method}]`,
|
||||||
|
`(${response.status})`,
|
||||||
|
[
|
||||||
|
request.url,
|
||||||
|
`${(performance.now() - request.startPerf).toFixed(2)}ms`,
|
||||||
|
ip || "unknown",
|
||||||
|
],
|
||||||
|
"90",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
4
types/bun.d.ts
vendored
4
types/bun.d.ts
vendored
|
@ -2,4 +2,8 @@ import type { Server } from "bun";
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
type BunServer = Server;
|
type BunServer = Server;
|
||||||
|
|
||||||
|
type ExtendedRequest = Request & {
|
||||||
|
startPerf: number;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue