
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.
A lightweight, persistent key-value database for Node.js, designed for simple user and item storage with SQLite as the backend. Litemap provides an easy-to-use API for managing users, items, and other records, making it ideal for bots, and other various apps.
npm install litemap
const { DatabaseFactory } = require("litemap");
const fs = require("fs/promises");
(async () => {
await fs.mkdir("./db", { recursive: true });
const dbManager = DatabaseFactory.Instance("./db/litemap.db");
if (!(await dbManager.getUser("user1"))) {
await dbManager.addUsers([
{
key: "user1",
value: {
name: "Mad Hatter",
role: "superadmin",
email: "test@example.com",
createdAt: new Date().toISOString(),
lastLogin: null,
},
},
]);
} else {
console.log("user1 already exists, skipping creation.");
if (
(await dbManager.getUser("user1").lastLogin) !== new Date().toISOString()
) {
await dbManager.updateUser("user1", {
lastLogin: new Date().toISOString(),
});
console.log("Updated last login for user1.");
}
dbManager.getUser("user1").then((user) => {
console.log("Current user1 data:", user);
});
}
})();
const { DatabaseFactory, SQLiteDatabase, UserDatabaseManager } = require("litemap");
You can import types for TypeScript:
import type { IUserRecord, UserRecord } from "litemap";
FAQs
A TypeScript library for mapping and processing data with SQLite integration
We found that litemap 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.

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.