
Research
/Security News
Laravel Lang Compromised with RCE Backdoor Across 700+ Versions
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.
@qbobjx/core
Advanced tools
Core runtime for OBJX: model metadata, columns, relations, typed query builder, and execution context contracts.
Core runtime for OBJX: model metadata, columns, relations, typed query builder, and execution context contracts.
npm install @qbobjx/core
import { col, defineModel } from '@qbobjx/core';
export const Project = defineModel({
table: 'projects',
columns: {
id: col.int().primary(),
name: col.text(),
tenantId: col.text().generated(),
},
});
@qbobjx/core also exports the public plugin contracts used by official and custom plugins.
import { definePlugin } from '@qbobjx/core';
export const snakeCasePlugin = definePlugin({
name: 'snake-case-naming',
hooks: {
onModelDefine(context) {
context.setColumnDbName('tenantId', 'tenant_id');
context.setColumnDbName('createdAt', 'created_at');
},
},
});
onModelDefine runs during defineModel(...) after column inputs are resolved and before the final model metadata is frozen. Use it to inspect columnDefinitions, read existing dbName mappings with getColumnDbName(...), or apply naming conventions with setColumnDbName(...).
FAQs
Core runtime for OBJX: model metadata, columns, relations, typed query builder, and execution context contracts.
We found that @qbobjx/core 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
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.

Security News
Socket found a malicious postinstall hook across 700+ GitHub repos, including PHP packages on Packagist and Node.js project repositories.

Security News
Vibe coding at scale is reshaping how packages are created, contributed, and selected across the software supply chain