typescript入門

選擇typescript的緣由很簡單,它出自Delphi、C#之父Anders Hejlsberg之手。對於熟悉java的開發者來講,能夠繼承以前的後端開發的基本概念,好比DI。java

安裝

npm install -g typescript

hello world

vim hello.ts
console.log("hello world!")

運行node

tsc hello.ts
node hello.js

或者合二爲一typescript

ts-node hello.ts

docs

相關文章
相關標籤/搜索