
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
botkit-storage-airtable
Advanced tools
An Airtable storage module for Botkit. A lot of the code is reused from botkit-storage-firebase.
Install
yarn add botkit-storage-airtable` # or npm install --save
botkit-storage-airtable
Next, require botkit-storage-airtable and pass it a config with a apiKey, base, and tables options.
Learn how to get an Airtable apiKey
here.
To get you started, you can use this Airtable template. Make a copy and modify it according to your needs. Airtable isn't schemaless so you have to do some data modeling to build anything custom.
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');
...
const tables = ['bots', 'users', 'channels', 'teams'] # for slack, add your
Airtable table names
airtableStorage = require('botkit-storage-airtable')({
apiKey: '...',
base: '...',
tables: tables
}),
controller = Botkit.slackbot({
storage: airtableStorage
});
Note: This may vary slightly depending on the bot platform you're building
for. Just ensure to find and update the storage property of the controller with
airtableStorage
// 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');
FAQs
Airtable driver for Botkit
We found that botkit-storage-airtable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.