
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
serializers
Advanced tools
This package provides type-safe data validation and serialization.
It's perfect to these kind of use cases:
Start by installing the library to your project:
npm i serializers
You start by defining serializers to your project:
import { serializer, fields } from 'serializers';
export const productSerializer = serializers({
id: fields.uuid(),
name: fields.string(1, 128, true),
price: fields.decimal(2),
status: fields.choice(['in-stock', 'out-of-stock', 'coming-soon']),
createdAt: fields.datetime(),
updatedAt: fields.datetime(),
url: fields.url(),
});
Validate any input data:
import { assertValidationError } from 'serializers';
// ...
try {
const product = productSerializer.validate({
/* input data */
});
console.log('A valid product:', product);
} catch (error) {
assertValidationError(error);
console.error(`Not a valid product: ${error.message}`);
}
Example: deserialize a JSON payload to an API server
import { assertValidationError } from 'serializers';
// ...
const payload = JSON.parse(request.body);
try {
const product = productSerializer.deserialize(payload);
console.log('Received valid product:', product);
} catch (error) {
assertValidationError(error);
console.error(`Not a valid product: ${error.message}`);
}
When returning a JSON response you can serialize the data so that it's guaranteed to be JSON-encodeable:
const product: productSerializer = loadProductDatabase();
return JSON.stringify(productSerializer.serialize(product));
You may extract the data type of valid data:
import { ValueOf } from 'serializers';
// ...
export type Product = ValueOf<typeof productSerializer>;
In the above example, the Product type equals to:
export interface Product {
id: string;
name: string;
price: string;
status: 'in-stock' | 'out-of-stock' | 'coming-soon';
createdAt: Date;
updatedAt: Date;
url: string;
}
FAQs
Type-safe data validation and serialization library
We found that serializers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.