
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
easy-airtable
Advanced tools
The EasyAirtable API provides easier way of accessing your data with airtable. It provides functions like typeorm features and some complicated features.
To install easy-airtable.js in node project:
npm install easy-airtable
There are three variables for configure
new EasyAirtable({ apiKey: 'YOUR_SECRET_API_TOKEN' })
// or
new EasyAirtable({ endpointUrl: 'https://api-airtable-com-8hw7i1oz63iz.runscope.net/' })
new EasyAirtable({ apiKey: 'YOUR_SECRET_API_TOKEN' }).getBase('YOUR_BASE_ID')
// or
EasyAirtableBase.fromConfig({ apiKey: 'YOUR_SECRET_API_TOKEN', baseId: 'YOUR_BASE_ID' })
new EasyAirtable({ apiKey: 'YOUR_SECRET_API_TOKEN' })
.getTable({ baseId: 'YOUR_BASE_ID', tableId: 'YOUR_TABLE_ID' });
// or
EasyAirtableTable.fromConfig({
apiKey: 'YOUR_SECRET_API_TOKEN',
baseId: 'YOUR_BASE_ID',
tableId: 'YOUR_TABLE_ID',
})
find all records in table
import { EasyAirtableTable } from 'easy-airtable';
const config = {
apiKey: 'YOUR_SECRET_API_TOKEN',
baseId: 'YOUR_BASE_ID',
tableId: 'YOUR_TABLE_ID',
}
const table = EasyAirtableTable.fromConfig(config);
const allRecords = await table.findAll();
find all records in specific conditions in table
import { EasyAirtableTable } from 'easy-airtable';
const config = {
apiKey: 'YOUR_SECRET_API_TOKEN',
baseId: 'YOUR_BASE_ID',
tableId: 'YOUR_TABLE_ID',
}
const table = EasyAirtableTable.fromConfig(config);
const allRecords = await table.findBy({ 'FIELD_NAME1': 'MATCHING_VALUE1', 'FIELD_NAME2': 'MATCHING_VALUE2' });
FAQs
more easier airtable
The npm package easy-airtable receives a total of 1 weekly downloads. As such, easy-airtable popularity was classified as not popular.
We found that easy-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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.