Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
botbuilder-azure
Advanced tools
Azure extensions for Microsoft BotBuilder.
To add the latest version of this package to your bot:
npm install --save botbuilder-azure
To get access to the daily builds of this library, configure npm to use the MyGet feed before installing.
npm config set registry https://botbuilder.myget.org/F/botbuilder-v4-js-daily/npm/
To reset the registry in order to get the latest published version, run:
npm config set registry https://registry.npmjs.org/
This module contains interfaces to use common Azure services to back Bot Builder's state storage.
When used with UserState
, ConversationState
and BotState
, these storage interfaces will automatically
read and write values to the associated Azure service.
It currently supports Cosmos DB (CosmosDbStorage()
) and Azure Blob Storage (BlobStorage()
).
Also included is an interface to store and retrieve chat transcripts in blog storage called AzureBlobTranscriptStore()
Import the module into your app.
const { BlobStorage } = require('botbuilder-azure');
Configure the storage driver to work with your Azure resources.
const blobStorage = new BlobStorage(options);
Pass the storage driver into your state managers:
const userState = new UserState(blobStorage);
const conversationState = new ConverationState(blobStorage);
FAQs
Azure extensions for Microsoft BotBuilder.
We found that botbuilder-azure demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.