tk3118’s blog

技術ブログっぽいただのブログです。

Nodejs

【Nodejs】忘れがちなNodejsにおけるコマンド引数処理

やり方 参考資料 やり方 process.argvを使います ↓公式ドキュメント nodejs.org 実際に使う際はこんな感じです。 // コマンド引数の数 const argc = process.argv.length; // 処理 process.argv.forEach((val, index) => { console.log(`${index}: ${val}`);…

【TypeScript】Property does not exist on type

概要 参考資料 概要 Property does not exist on type これは型定義無しでJSを使用したり、requestから取ってきてパースされたJsonなどを使おうとすると起こるかと思われます。 要は、型定義ないよって話なので、 型定義 するか anyにするかで解決します。 …

【TypeScript】~ using the 'esModuleInterop' flag.と言われた時の対応

概要 詳細 概要 以下のようなエラーが出るときがあります。 This module is declared with using 'export =', and can only be used with a default import when using the 'esModuleInterop' flag. 対応としては、tsc のフラグに --esModuleInterop を付け…