この記事の概要
TypeScriptの環境構築について記載する
TypeScriptの環境構築
Node.jsのインストール(npmのインストール)
// homebrewのインストール
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
// nodebrewのインストール
$ brew install nodebrew
$ nodebrew --version
$ nodebrew ls-remote
// node.js(npm)のインストール
$ mkdir ~/.nodebrew/src
$ nodebrew install-binary stable
$ nodebrew ls
$ nodebrew use v18.4.0
$ echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.zshrc
上記のページからHombrewインストール用のコマンドを取得
node.jsインストール時にエラーが起こるので上記を参考に対応
TypeScriptのインストール
// TypeScriptのインストール
$ npm install -g typescript
$ tsc -v
TypeScriptを使ってみる
hello.ts
const message:string = 'Hello! TypeScript!';
console.log(message);
// tsをjsにコンパイル
tsc hello.ts
// jsファイルを実行
node hello.js