Skip to content

Instantly share code, notes, and snippets.

@vschoener
Created December 18, 2018 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vschoener/151d93ddda7f063b30a6ce5f5822cb90 to your computer and use it in GitHub Desktop.
Save vschoener/151d93ddda7f063b30a6ce5f5822cb90 to your computer and use it in GitHub Desktop.
import express from 'express';
import http from 'http2';
const app = express();
app.get('/', () => { message: 'Hellow Docker and TypeScript' });
http.createServer(app).listen('8080', () => {
console.log('Ready fox! I\'m listening')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment