Create start-relay-server.ts

This commit is contained in:
Tommy D. Rossi
2025-11-15 18:56:03 +01:00
parent b79c480633
commit 10c68f935d
+43
View File
@@ -0,0 +1,43 @@
import { startRelayServer } from './extension/cdp-relay.js'
import fs from 'node:fs'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const logFilePath = path.join(__dirname, '..', 'relay-server.log')
fs.writeFileSync(logFilePath, '')
const log = (...args: any[]) => {
const message = args.map(arg =>
typeof arg === 'string' ? arg : JSON.stringify(arg)
).join(' ')
fs.appendFileSync(logFilePath, message + '\n')
}
const logger = {
log,
error: log
}
export async function startServer({ port = 9988 }: { port?: number } = {}) {
const server = await startRelayServer({ port, logger })
console.log('CDP Relay Server running. Press Ctrl+C to stop.')
console.log('Logs are being written to:', logFilePath)
process.on('SIGINT', () => {
console.log('\nShutting down...')
server.close()
process.exit(0)
})
process.on('SIGTERM', () => {
console.log('\nShutting down...')
server.close()
process.exit(0)
})
return server
}
startServer().catch(console.error)