
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.
**AirKV** is a key-value database storage library built on top of Airtable. > [!CAUTION] > **Note**: This project was developed in my free time to learn more about creating npm packages. However, Airtable recently introduced a soft limit of 1000 API reque
AirKV is a key-value database storage library built on top of Airtable.
[!CAUTION] Note: This project was developed in my free time to learn more about creating npm packages. However, Airtable recently introduced a soft limit of 1000 API requests per month for free accounts, which can restrict the package’s functionality for high-demand use cases.
0.0.1Install AirKV using npm:
npm install airkv
// const {AirKV} = require("airkv");
import {AirKV} from "airkv";
const airkv = new AirKV({
token : "..." ,
workspaceId : "...",
logging : true
});
(async()=>{
const base = await airkv.airbase("example");
await base.set("key1" , "value1");
const value = await base.get("key1");
await base.delete()
})();
To start using AirKV, initialize it with your Airtable credentials:
import { AirKV } from 'airkv';
const airkv = new AirKV({
token: 'airtable_api_token',
workspaceId: 'workspace_id',
logging: true // optional, false by default
});
airbase(name)Creates or retrieves an Airbase instance used to store key-value pairs.
const base = await airkv.airbase('example');
get(key)Description: Retrieves the value associated with a given key.
const value = await base.get('username');
console.log(value); // value associated with 'username' or `null` if not found
set(key , value)Description: Stores or updates a key-value pair in the base.
await base.set('username', 'shivzee');
exists(key)Description: Checks if a given key exists in the base.
const exists = await base.exists('username');
console.log(exists); // true or false
delete(key)Description: Deletes a key-value pair from the base.
await base.delete('username');
Enable logging by setting the logging option to true when creating an AirKV instance. This will log interactions with the Airtable API for debugging purposes.
Contributions are welcome! Submit a pull request or open an issue for any improvements or bug fixes.
Author : shivzee
IDE Used : VS Code
Buy me a coffee
FAQs
**AirKV** is a key-value database storage library built on top of Airtable. > [!CAUTION] > **Note**: This project was developed in my free time to learn more about creating npm packages. However, Airtable recently introduced a soft limit of 1000 API reque
We found that airkv demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.