Skip to content

Instantly share code, notes, and snippets.

@dupski
Last active September 8, 2017 23:35
Show Gist options
  • Save dupski/0f1d530130383b08b94f44e8778ec03b to your computer and use it in GitHub Desktop.
Save dupski/0f1d530130383b08b94f44e8778ec03b to your computer and use it in GitHub Desktop.
Koa & Typescript - server.ts
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