TypeScriptSamples/node at jspmUpdate · microsoft/TypeScriptSamples · GitHub
Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Latest commit

 

History

History
 
 

Folders and files

README.md

TypeScript Sample: Node.js

Overview

This sample implements a very basic node.js application using TypeScript

Running

For HttpServer

tsc --sourcemap --module commonjs HttpServer.ts
node HttpServer.js

For TcpServer

tsc --sourcemap --module commonjs TcpServer.ts
node TcpServer.js