Last active
September 8, 2017 23:35
-
-
Save dupski/0f1d530130383b08b94f44e8778ec03b to your computer and use it in GitHub Desktop.
Koa & Typescript - server.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as Koa from 'koa'; | |
import * as Router from 'koa-router'; | |
const app = new Koa(); | |
const router = new Router(); | |
router.get('/*', async (ctx) => { | |
ctx.body = 'Hello World!'; | |
}); | |
app.use(router.routes()); | |
app.listen(3000); | |
console.log('Server running on port 3000'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment