
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.
@thinkam/typeairtable
Advanced tools
Data-Mapper Airtable for TypeScript, ES7, ES6, ES5. Supports Airtable database.
TypeAirtable is an ORM that can run in NodeJS, Browser, Cordova, PhoneGap, Ionic, React Native, NativeScript, Expo, and Electron platforms and can be used with TypeScript and JavaScript (ES5, ES6, ES7, ES8). Its goal is to always support the latest JavaScript features and provide additional features that help you to develop any kind of application that uses airtable database - from small applications with a few tables to large scale enterprise applications with multiple airtable databases.
TypeAirtable is highly influenced by other ORMs, such as TypeORM and Entity Framework.
And more...
With TypeAirtable your find look like this:
import { AirTableConfig } from '@thinkam/typeairtable';
const config = new AirTableConfig();
const instance = config.configure({
baseUrl: 'https://api.airtable.com/v0/your_url',
apiKey: 'your_api_key',
});
const repository = instance.getRepository({
tableName: 'your_table',
columns: {
name: 'singleText',
isActived: 'checkBox',
},
});
const result = await repository.find({
select: ['name'],
where: { name: 'blah' },
});
And your create looks like this:
await repository.create({
name: 'your_name',
isActived: true,
});
If you prefer update, you can use it as well:
await repository.update('your_id', {
name: 'other_name',
isActived: false,
});
And your delete will look this way:
await repository.destroy('your_id');
Install the npm package:
npm install @thinkam/typeairtable --save
Learn about contribution here and how to setup your development environment here.
FAQs
Data-Mapper Airtable for TypeScript, ES7, ES6, ES5. Supports Airtable database.
The npm package @thinkam/typeairtable receives a total of 17 weekly downloads. As such, @thinkam/typeairtable popularity was classified as not popular.
We found that @thinkam/typeairtable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.