Windows10でTypeScriptをインストールする方法
環境情報
nodeバージョンの確認
>node --version v17.0.1
npmバージョンの確認
>npm --version 8.1.0
1.ts-nodeをインストールする
>npm install -g ts-node added 16 packages, and audited 18 packages in 29s found 0 vulnerabilities npm notice npm notice New patch version of npm available! 8.1.0 -> 8.1.3 npm notice Changelog: https://github.com/npm/cli/releases/tag/v8.1.3 npm notice Run npm install -g npm@8.1.3 to update! npm notice
2. typescriptをインストール
>npm install -g typescript added 1 package, and audited 3 packages in 9s found 0 vulnerabilities
バージョン確認
>tsc -v Version 4.4.4
3.動作確認
3.1 Cドライブ直下に「ypescriptフォルダを作成します
3.2 作成したフォルダに移動します
C:\WINDOWS\system32>cd C:\typescript
3.3 TypeScriptの初期設定をします
C:\typescript>tsc -init
message TS6071: Successfully created a tsconfig.json file.
3.4 テスト用のTypeScriptファイルを作成
ファイル名:arkgame.ts
内容:
let msg : String = ''; msg = " become smart and strong" console.log("study skill hard " + msg);
3.5 TypeScriptファイルをコンパイルします
C:\typescript>tsc
コンパイルが成功すると「arkgame.js」というJavaScriptファイルが作成されます。
3.6 コンパイルされたファイルを実行
C:\typescript>ts-node arkgame.js
study skill hard become smart and strong