
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@monkeyplus/unorm
Advanced tools
Herramienta para capa de datos
# yarn
yarn add @monkeyplus/unorm
# npm
npm install @monkeyplus/unorm
# pnpm
pnpm add @monkeyplus/unorm
import { createOrm } from '@monkeyplus/unorm';
import { defineDriver } from '@monkeyplus/unorm/drivers/knex';
const driver = defineDriver(/* ...options */);
const orm = createOrm({ driver });
const User = orm.defineModel('users', {
fields: ['id', 'name', 'email'],
});
// Create User
const user = await User.create({ name: 'John Doe', email: 'email@test.com' });
// Update UserByPk
const user = await User.updateByPk(1, { name: 'John Doe', email: '' });
// Delete UserByPk
const user = await User.deleteByPk(1);
// Find UserByPk
const user = await User.findByPk(1);
// FindAll
const users = await User.findAll();
FAQs
Universal Orm Layer
We found that @monkeyplus/unorm 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.