Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@matchlighter/mobx_model
Advanced tools
A modern, extensible library for building client-side data models upon the principles of OOP.
A modern, extensible library for building client-side data models upon the principles of OOP.
import { Model, field } from '@matchlighter/mobx_model';
class User extends Model {
@field full_name: string;
@field({ /* options */ }) username: string;
@collection({ type: 'local' }) projects: Project[] = [];
}
This library was originally built with MobX support built in out of the box. However, MobX support was refactored to a separate module before the first public release. MobX support can be enabled like such:
// ES6
import * as mobx from 'mobx';
import { initMobxCompat } from '@matchlighter/mobx_model';
initMobxCompat(mobx);
// CommonJS
const mobx = require('mobx');
const mobxModel = require('@matchlighter/mobx_model');
mobxModel.initMobxCompat(mobx);
With MobX support enabled,
@field
automatically applies MobX @observable
@observable
/ @computed
are automatically applied in other appropriate locationsFAQs
A modern, extensible library for building client-side data models upon the principles of OOP.
The npm package @matchlighter/mobx_model receives a total of 3 weekly downloads. As such, @matchlighter/mobx_model popularity was classified as not popular.
We found that @matchlighter/mobx_model 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.