nodejs

azreu storage V12を使う方法

const { BlobServiceClient } = require('@azure/storage-blob'); const ConnectionString = ""; async function main() { console.log('Azure Blob storage v12 - JavaScript quickstart sample'); // Quick start code goes here const list = await listB…

Azure storage tableから1000件以上のデータを取得する方法

queryEntitiesは最大1000件までしか取得できない。 continuationTokeを使うことで1000件以上のデータを取得することができる exports.getDataFromStorageServiceAsync = async function getAllFromTable(key) { let account = ""; let access_key = ""; var …

ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client

nestjsでmysqlにアクセスできない ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client が発生してnestjsのアプリが起動できない状況になった。 環境 ubuntu 18.4 mysql 8 …