
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@cashfarm/store
Advanced tools
Library for easily defining and using your Read Model (as in DDD Read Model)
To have a simple to use library for managing the Read Models. The kind we use when we want to store projections of events used in CQRS/ES arquitectures.
The goal of this library is to facilitate simple queries against a relational database. It was designed from start with denormalized tables in mind.
The Store class represents a set of objects that can be stored and queried. It's NOT your entity repository (as in a DDD).
Table child classes is how you map a DB table. To create a store you'll have to extend the Table class, define the database table name, fields and primary key.
A class which reads the table definition and allows you to construct queries against it.
export class Pet {
public id: number;
public breed: string;
public birthday: Date;
public gender: string;
public species: string;
}
@TableName('pets')
export class PetsTable extends Table {
@PK()
id = new NumberField('id');
species = new StringField('species');
breed = new StringField('breed');
birthday = new DateField('birthday');
gender = new StringField('gender');
}
@DtoClass(Pet)
@TableClass(PetsTable)
export class PetStore extends MysqlStore<PetsTable, Pet> {
constructor() {
super({} as IPool);
}
public allCats(): Promise<Array<Pet>> {
return this.find(query =>
query.where(p => p.species.equals('cat'))
);
}
public oneYearPetsAndAllDogs(): Promise<Array<Pet>> {
return this.find(q => q
.select(f => [f.birthday, f.gender])
.where(f => f.species.equals('cat'))
.groupBy([this[Sym.TABLE]['species'], f => f.gender])
.orderBy(f => f.breed, OrderDirection.Asc)
.orderBy(f => f.birthday, OrderDirection.Desc)
.limit(10)
);
}
}
const query = new Query(new PetsTable())
.whereAll(
f => f.gender.equals('male'),
f => f.birthday.before(new Date(2016, 1, 1, 2, 0, 0))
)
.where(f => f.id, [2, 4, 6, 8])
.whereAny(
f => f.species.equals('cat'),
f => f.species.equals('dog')
);
npm i -g yarn
)yarn setup:dev
(or npm run setup:dev
)Profit!
To continuously compile and run tests simply run yarn test:watch
FAQs
Library for easily defining and using your Read Model (as in DDD Read Model)
We found that @cashfarm/store demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.