aboutsummaryrefslogtreecommitdiff
path: root/examples/kingworld/src/index.ts
blob: 68fd8f1a87233fe6af9a77288826f6a8d70b6029 (plain) (blame)
1
2
3
4
5
6
7
import KingWorld from 'kingworld'

new KingWorld()
    .get("/", () => "Hello KingWorld")
    .listen(3000)

console.log('🦊 KINGWORLD is running at :3000')