botkit-storage-firebase

1.0.1 • Public • Published

botkit-storage-firebase

A Firebase storage module for Botkit.

Usage

Just require botkit-storage-firebase and pass it a config with a firebase_uri option. Then pass the returned storage when creating your Botkit controller. Botkit will do the rest.

Make sure everything you store has an id property, that's what you'll use to look it up later.

var Botkit = require('botkit'),
    firebaseStorage = require('botkit-storage-firebase')({firebase_uri: '...'}),
    controller = Botkit.slackbot({
        storage: firebaseStorage
    });
// then you can use the Botkit storage api, make sure you have an id property
var beans = {id: 'cool', beans: ['pinto', 'garbanzo']};
controller.storage.teams.save(beans);
beans = controller.storage.teams.get('cool');

Readme

Keywords

Package Sidebar

Install

npm i botkit-storage-firebase

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

14.9 kB

Total Files

10

Last publish

Collaborators

  • xoxco