1.デバッグロギングの検討 あるサイトで「デバッグロギングを有効にしていない場合は、こうした出力は表示されません。」とあるので、入れてみた 2.結論 ・呼び出しシーケンスを解析するだけで有れば、pin…
Month: 4月 2022
nodejs: selectしたデータがnullの配列の要素を除いて、配列を作成
1.配列の各オブジェクトでcopy rows[i] -> rt[j] rt[j] = { …rows[i] }; 2.前提 ・let rows = [{“uuid”:”1111&#…
nodejs : code: ‘ERR_UNHANDLED_REJECTION’
1.async ,await の付け忘れで出るエラー node:internal/process/promises:279 triggerUncaughtException(err, true /* fromPromis…
Node.js,MariaDB : Module for Transaction
1.目的 ・トランザクションの記述でのコールバックのネストをシンプルにする 2.code “use script”; const fs = require(‘fs’); const mysql = require(‘my…
npm eslintをinstallと使い方
1.eslintのinstall # npm install eslint –save-dev npm notice Run npm install -g npm@8.7.0 to update! 2.npmのupda…
nodejs : Define the description method of Event and function flow
1.Purpose ・ Define the description method of Event and function flow. 2.Directories and files -+- index.js | +…
Coding style, 戻り値の渡し方と、fetch, XMLHttpRequestでのrequest
1.Coding style (1)nodejs: express での戻り値の渡し方 (2)fetch, XMLHttpRequestでのrequest 2.exprssでの戻り値の渡し方 router.post(‘/…
PM2 名前を付けて起動
1.PM2 名前を付けて起動 pm2 start index.js –name 169C
linux port 開放
1.port 追加 # firewall-cmd –list-all # firewall-cmd –add-port=8080/tcp –zone=public –permanent # firewall-cm…
Node.js: axios responceが無いときのerror 処理
1.axios responceが無いときのerror 処理 async function client_connect(client_host, supplier_uuid, client_uuid) { const …