
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Lightweight JS SDK for syncing JSON data with Google Sheets as a backend.
SheetStash is a simple and powerful SDK for managing and syncing baskets of JSON data using Google Sheets as a backend. It provides easy access to baskets, automatic synchronization with your Google Sheet, and allows developers to manage data in a clean and intuitive way - all without any server costs. 🚀
To install SheetStash, use npm:
npm install sheetstash
const SheetStash = require("sheetstash");
const auth = require("./auth"); // Your Google API auth setup
const pantry = new SheetStash("your-google-sheet-id", auth); // Initialize with Google Sheet ID
// Access a basket (e.g., "store")
async function useBasket() {
const store = await pantry.store; // Access the basket named "store"
// Modify the basket (this will automatically trigger an update to Google Sheets)
store.someKey = "newValue"; // Automatically triggers an update to the Sheet! 🔄
console.log(store); // Output the store data 📋
// Access another basket (e.g., "cart")
const cart = await pantry.cart; // Dynamically fetch the basket named "cart"
console.log(cart);
};
useBasket().catch(console.error);
process.env.SHEETSTASH_CHACHING = "0";
Disables in-memory caching so every basket fetch hits the backing Google Sheet. Useful for development or when real-time accuracy is more important than speed.
pantry.store
, pantry.cart
, etc., without explicit function calls.Apache License 2.0. See LICENSE file for details.
FAQs
Lightweight JS SDK for syncing JSON data with Google Sheets as a backend.
The npm package sheetstash receives a total of 3 weekly downloads. As such, sheetstash popularity was classified as not popular.
We found that sheetstash demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.