
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@ckpack/midway-plugin-sequelize
Advanced tools
Midway plugin for Sequelize V7
npm i @ckpack/midway-plugin-sequelize @sequelize/core --save
import { join } from 'node:path';
import { Configuration, ILifeCycle } from '@midwayjs/core';
import * as sequelize from '@midwayjs/sequelize';
@Configuration({
imports: [
// ...
sequelize,
],
importConfigs: [join(__dirname, './config')],
})
export class MainConfiguration implements ILifeCycle {
// ...
}
详细参考https://sequelize.org/docs/v7/models/defining-models/
import { DataTypes, InferAttributes, InferCreationAttributes, Model } from '@sequelize/core';
import { Attribute, NotNull } from '@sequelize/core/decorators-legacy';
class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
@Attribute(DataTypes.STRING)
@NotNull
declare firstName: string;
@Attribute(DataTypes.STRING)
declare lastName: string | null;
}
import { Person } from '../entity/person';
export default {
// ...
sequelize: {
dataSource: {
// 第一个数据源,数据源的名字可以完全自定义, 具体参数与new Sequelize()构造函数参数一致
default: {
dialect: 'postgres',
database: 'test4',
username: 'root',
models: [Person], // 注意此处与@midwayjs/sequelize不同
},
// 第二个数据源
default2: {
// ...
},
},
},
};
详细参考https://sequelize.org/docs/v7/category/querying/
import { Provide } from '@midwayjs/core';
import { Person } from '../entity/person';
@Provide()
export class PersonService {
async createPerson() {
const person = new Person({ name: 'bob', age: 99 });
await person.save();
}
}
数据源即创建出的 sequelize 对象,我们可以通过注入内置的数据源管理器来获取。
import { InjectDataSource } from '@ckpack/midway-plugin-sequelize';
import { Sequelize } from '@sequelize/core';
import { Person } from '../entity/person';
export class UserService {
// 注入默认数据源
@InjectDataSource()
defaultDataSource: Sequelize;
// 注入自定义数据源
@InjectDataSource('default2')
customDataSource: Sequelize;
async getUser() {
console.log(await this.defaultDataSource.models.Person.findAll());
}
}
FAQs
Midway plugin for Sequelize V7
The npm package @ckpack/midway-plugin-sequelize receives a total of 3 weekly downloads. As such, @ckpack/midway-plugin-sequelize popularity was classified as not popular.
We found that @ckpack/midway-plugin-sequelize demonstrated a not healthy version release cadence and project activity because the last version was released 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.