Node.js で Typescript を使う
2021/05/26
はじめに
最近 Node.js
でスクリプトを書く機会が多いので書き慣れた Typescript
でコーディングしたくなった。
Setup
mkdir test-2021-05-26
cd test-2021-05-26
npm init
# 設定
npm install --save-dev typescript @types/node
touch index.ts
pakage.json
に script を追加
{
...
"scripts": {
...
"start" : "npx tsc index.ts && node index.js"
},
...
}
@types/node
これをインストールすることで fs
などの Node.js
の機能の型が使えるようになる。
import * as fs from 'fs'
...
実行
npm start