Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@e22m4u/js-repository-decorators
Advanced tools
TypeScript декораторы для @e22m4u/js-repository
npm install @e22m4u/js-repository-decorators
Для включения поддержки декораторов, добавьте указанные
ниже опции в файл tsconfig.json
вашего проекта.
{
"emitDecoratorMetadata": true,
"experimentalDecorators": true
}
import {
model,
property,
relation,
getModelDefinitionFromClass,
} from '@e22m4u/js-repository-decorators';
import {DataType} from '@e22m4u/js-repository';
import {RelationType} from '@e22m4u/js-repository';
@model({
tableName: 'myUserTable',
datasource: 'myDatasource',
})
class User {
@property({
type: DataType.STRING,
primaryKey: true,
})
id!: string;
@property({
type: DataType.STRING,
required: true,
})
name!: string;
@property({
type: DataType.STRING,
default: '',
})
roleId!: string;
@relation({
type: RelationType.BELONGS_TO,
model: 'Role',
})
role?: object;
}
const modelDef = getModelDefinitionFromClass(User);
// {
// "name": "User",
// "tableName": "myUserTable",
// "datasource": "myDatasource",
// "properties": {
// "id": {
// "type": "string",
// "primaryKey": true,
// },
// "name": {
// "type": "string",
// "required": true,
// },
// "roleId": {
// "type": "string",
// "default": "",
// },
// },
// "relations": {
// "role": {
// "type": "belongsTo",
// "model": "Role"
// },
// },
// },
npm run test
MIT
FAQs
TypeScript декораторы для @e22m4u/js-repository
We found that @e22m4u/js-repository-decorators demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.