Last active
April 29, 2021 14:50
-
-
Save prettymuchbryce/5542020 to your computer and use it in GitHub Desktop.
hello TypeScript & node.js
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
/// <reference path="./.node-definitions/node.d.ts" /> | |
/** | |
* See the node.js TypeScript definition needed for this | |
* example here: https://github.com/borisyankov/DefinitelyTyped | |
*/ | |
import Http = module('http'); | |
class MyServer { | |
private header:Object = {'Content-Type': 'text/plain'}; | |
constructor() { | |
var server:Http.Server = Http.createServer(this.onRequest); | |
server.listen(3000); | |
console.log("Server starting.."); | |
} | |
private onRequest(request:Http.ServerRequest, response:Http.ServerResponse):void { | |
response.writeHead(200, this.header); | |
response.end("Hello TypeScript & node.js"); | |
} | |
} | |
var myServer = new MyServer(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment