Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
airtable-monitor
Advanced tools
This library polls your Airtable tables to monitor changes, calling a simple event handler when a change is detected.
yarn add airtable-monitor
const AirtableMonitor = require('airtable-monitor');
const monitor = new AirtableMonitor(
{
baseID: xxx, // Airtable base ID
apiKey: xxx, // Airtable API token
tables: ['table_to_monitor'],
tableInterval: 1, // Optional (default = 0) : an interval in seconds between calls to Airtable API for each table of a tick to avoid rate limiting.
},
event => {
// event structure :
// {
// date,
// tableName,
// fieldName,
// previousValue,
// newValue,
// recordId,
// }
},
);
monitor.start(30); // Poll every 30 seconds. Default : 60 seconds
foo
to lorem ipsum
and the check interval occurs in the middle, an first event could be fired for foo
-> lorem
, then the next check would fire an event for lorem
-> lorem ipsum
.yarn install && yarn test
FAQs
Get notified when an Airtable record is edited
The npm package airtable-monitor receives a total of 4 weekly downloads. As such, airtable-monitor popularity was classified as not popular.
We found that airtable-monitor 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.