
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
sqlite-cache-for-google-sheets
Advanced tools
Google Sheets is a rapid, albeit guardrail-less way of entering data from the browser. Using Google Forms gives it nice guardrails. This library makes hacking on a Sheet or set of Sheets locally quick and easy, loading once and providing a cache layer to issue queries against.
Example use case:
This is one of those highly opinionated libraries that either works for you or it doesn't. It works for my use case which is to rapidly develop apps and data science experiments on top of data that myself or others have stored in Google Sheets. It fails the simple building blocks rule and I know it; it's a complex piece that might be too specialized to one person's uses cases. If you suspect it won't work for your use case, it probably won't.
Await the thing prior to mounting your express app or graphql server or whatever your backend layer is.
Here's a simple example of some consumer code:
import express from 'express';
import { createDatabase } from 'sqlite-cache-for-google-sheets';
import {
typeDefs,
resolvers,
} from './schema';
const { ApolloServer } = require('apollo-server-express');
require('dotenv').config();
const mapFunction = (row) => ({
name: row.get("Name"),
tags: row.get("Tags"),
});
const config = {
apiKey: process.env.SHEETS_API_KEY || '',
docId: process.env.DOC_ID || '',
sheetId: process.env.DAYS_SHEET_ID || '',
mapFunction,
primaryKey: 'date',
databaseFilename: './cache.db',
databaseTableName: 'days',
};
(async () => {
await createDatabase(config);
const PORT = process.env.PORT || 8080;
const app = express();
const server = new ApolloServer({ typeDefs, resolvers });
await server.start();
server.applyMiddleware({ app });
app.listen(PORT, () => {
console.log(`Server is listening on port ${PORT}`);
});
})();
Returns a bettersqlite database object because that seems like the friendliest contract.
These musings should be replaced by more thorough docs at some point.
FAQs
Opinionated sqlite cache for sheets.
We found that sqlite-cache-for-google-sheets 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.