
Security News
Inside Lodash’s Security Reset and Maintenance Reboot
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.
typescript-model
Advanced tools
Typed entity modeling library with attribute sanitization and validation.
npm install --save typescript-model
An example User model is shown below.
import { Model, Config as BaseConfig, Sanitizers, Validators, sanitizers, validators } from 'typescript-model';
export interface Config extends BaseConfig {
minUsernameLength: number,
};
export class User extends Model<Config> {
public email: string;
public id?: number;
public username: string;
public verified: boolean;
static config: Config = {
...Model.config,
minUsernameLength: 5,
};
static sanitizers: Sanitizers<User> = {
...Model.sanitizers,
email: (model, key, value) => sanitizers.string(value),
id: (model, key, value) => undefined !== value ? sanitizers.integer(value) : undefined,
username: (model, key, value) => sanitizers.string(value),
verified: (model, key, value) => sanitizers.boolean(value),
};
static validators: Validators<User> = {
...Model.validators,
email: (model, key, value) => validators.email(value),
id: (model, key, value) => undefined === value || validators.integer(value, { min: 1 }),
username: (model, key, value) => validators.string(value, { min: model.config.minUsernameLength }),
verified: (model, key, value) => validators.boolean(value),
};
public constructor(email: string, username: string, verified: boolean = false, config: Partial<Config> = {}) {
super({ ...User.config, ...config as object } as Config);
this.email = email;
this.username = username;
this.verified = verified;
}
}
Instantiation:
import { User } from './User';
const user = new User('foo@example.com', 'foo', false);
console.log(user);
// User { email: 'foo@example.com', username: 'foo', verified: false }
Review the __tests__ directory for additional usage examples.
There are various ORM libraries available for Typescript and JavaScript but all are tightly coupled with Data Access Mappers and underlying data stores.
This library provides just the low-level requirements of an entity model without the concern of how data is mapped.
The specific use-case that led to it's inception was to be able to share entity models between API and client applications. While an API application maps data sourced from arbitrary - and usually multiple - data stores, the client application would map data sourced from the API.
Both applications would share a common package that provides the model definitions containing common domain and business logic while each being able to implement their own data mapping functionality, either by extending the base entities with create(), update(), etc. implementations (Active Record pattern) or with dedicated data mapper classes (Repository pattern).
FAQs
Typed entity modeling library with attribute sanitization and validation.
We found that typescript-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
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.

Security News
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.