
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@ezorm/orm is the direct Node.js ORM runtime for Ezorm models, including repositories, explicit read queries, and schema push/pull helpers.
npm install @ezorm/core @ezorm/orm
import { Field, Model, PrimaryKey } from "@ezorm/core";
import { createOrmClient } from "@ezorm/orm";
@Model({
table: "todos",
cache: {
backend: "inherit",
ttlSeconds: "inherit"
}
})
class Todo {
@PrimaryKey()
@Field.string()
id!: string;
@Field.string()
title!: string;
}
const client = await createOrmClient({
databaseUrl: "sqlite::memory:",
readCache: {
default: {
backend: "memory",
ttlSeconds: 30
},
byModel: {
Todo: {
backend: "file",
ttlSeconds: 300
}
}
}
});
readCache is opt-in and only applies to repository reads in the direct ORM:
repository.findById(...)repository.findMany(...)TTL is absolute from write time, and create, update, and delete clear that model's cached repository entries.
FAQs
Direct relational ORM, repositories, and schema sync for Ezorm models.
We found that @ezorm/orm 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.