
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
typescript-model
Advanced tools
Typed entity modeling library with attribute sanitization and validation.
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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.