Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
immutable-models
Advanced tools
Create immutable models driven by Immutable.js iterables.
Immutable Models requires Immutable.js 3.8.0 or later.
npm install --save immutable-models
This assumes that you’re using npm package manager with a module bundler like Webpack or Browserify to consume CommonJS modules.
Immutable.js is a great library for dealing with immutable data. However, it doesn't provide the easy way for hermetization.
Because of that, we can't create simple and defined model interfaces - everything is public and (excluding Records
) there
is no way to put additional logic in these models.
Immutable Models wraps immutable structures and provides interfaces defined by a developer.
Let's see some example:
import { Model } from 'immutable-models';
import { Permission } from './Permission';
import { Set } from 'immutable';
interface UserShape {
userName: string
createdBy?: User;
permissions?: Set<Permission>;
}
export class User extends Model<UserShape> {
getUserName(): string {
return this.get('userName');
}
getCreatedBy(): User {
return this.get('createdBy');
}
isAdmin(): boolean {
return this.hasPermission(Permission.ADMIN);
}
isCreatedByAdmin(): boolean {
return this.getCreatedBy() ? this.getCreatedBy().isAdmin() : false;
}
getPermissions(): Set<Permission> {
return this.get('permissions', Set<Permission>());
}
hasPermission(permission: Permission): boolean {
return this.getPermissions().contains(permission);
}
addPermission(permission: Permission): this {
return this.update('permissions', permissions => permissions.add(permission));
}
}
// example usage
const user = new User({
userName: 'piotr',
permissions: Set([Permission.DEVELOPER])
});
user.getUserName(); // > piotr
user.isAdmin(); // false
// create admin user based on user - immutable data
const adminUser = user.addPermission(Permission.ADMIN); // make me an admin!
adminUser.getUserName(); // > piotr
adminUser.isAdmin(); // > true
user.isAdmin(); // > false
// create another user
const anotherUser = new User({
userName: 'lukasz',
createdBy: adminUser
});
anotherUser.isAdmin(); // > false
anotherUser.isCreatedByAdmin(); // > true
Like you see, User
class hides complexity of Immutable.js structures and contains business logic.
It's not completed but we are working on it:
If you are using TypeScript, you don't have to install typings - they are provided in npm package.
MIT
v0.1.2
update
and has
methods to Model
has
method to ReadonlyModel
notSetValue
argument to get
method in ReadonlyModel
FAQs
Create immutable models driven by Immutable.js iterables.
The npm package immutable-models receives a total of 0 weekly downloads. As such, immutable-models popularity was classified as not popular.
We found that immutable-models 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.