botframework-configdeprecated

library for working with Bot Framework .bot configuration files

Usage no npm install needed!

<script type="module">
  import botframeworkConfig from 'https://cdn.skypack.dev/botframework-config';
</script>

README

Bot Framework Bot Configuration library

This library provides the ability to read/write Bot Framework .bot files.

Usage

import * as bfc from 'botframework-config';

// load and decrypt .bot file
let configuration = bfc.BotConfiguration.load('my.bot', mysecret);
...

// save .bot file encrypted with secret
configuration.save('my.bot', mysecret);