index.ts
import { createApp } from './app'

const app = createApp({
  name: 'My Project',
  port: 3000,
  middleware: [cors(), logger()]
})

await app.listen()
// Server running on http://localhost:3000

Generated 10 lines · TypeScript