🐕

Node.js コマンドのまとめ

2023/11/19に公開

・.tsを.jsにコンパイルする
$ ./node_modules/.bin/tsc

・hello.js(例) を実行する
$ node hello.js

・出力先をdistに変更
% npx tsc src/index.ts --outDir dist

Discussion