11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import { startPlayWriterCDPRelayServer } from '../src/cdp-relay.js'
|
|
|
|
async function main() {
|
|
const server = await startPlayWriterCDPRelayServer({ port: 19988 })
|
|
|
|
console.log('Server running. Press Ctrl+C to stop.')
|
|
|
|
}
|
|
|
|
main().catch(console.error)
|