Package Exports
- class-transformer-validator
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (class-transformer-validator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
class-transformer-validator
A simple plugin for class-transformer and class-validator which combines them in a nice and programmer-friendly API.
Installation
Module installation
npm install class-transformer-validator --save
Peer dependencies
This package is only a simple plugin/wrapper, so you have to install the required modules too because it can't work without them. See detailed installation instruction for the modules installation:
Usage
The usage of this module is very simple.
import { IsEmail } from 'class-validator';
import { transformAndValidate } from "class-transformer-validator";
// declare the class using class-validator decorators
class User {
@IsEmail()
public email: string;
public hello(): string {
return "World!";
}
}
// then load the JSON string from any part of your app
const userJson: string = loadJsonFromSomething();
// transform the JSON to class instance and validate it correctness
transformAndValidate(User, userJson)
.then((userObject: User) => {
// now you can access all your class prototype method
console.log(`Hello ${userObject.hello()}`); // prints "Hello World!" on console
})
.catch(error => {
// here you can handle error on transformation (invalid JSON)
// or validation error (e.g. invalid email property)
console.err(error);
});
You can also transform and validate plain JS object (e.g. from express req.body). Using ES7 async/await syntax:
async (req, res) => {
try {
// transform and validate request body
const userObject = await transformAndValidate(User, req.body);
// intered type of userObject is User, you can access all class prototype properties and methods
} catch (error) {
// your error handling
console.err(error);
}
}
API reference
Function signatures
There is available one function with two overloads:
function transformAndValidate<T extends PlainObject>(classType: ClassType<T>, jsonString: string, options?: TransformValdiationOptions): Promise<T>;
function transformAndValidate<T extends PlainObject>(classType: ClassType<T>, object: PlainObject, options?: TransformValdiationOptions): Promise<T>;
Parameters and types
classType
- an class symbol, a constructor function which can be called withnew
type ClassType<T> = {
new (...args: any[]): T;
}
jsonString
- a normal string containing JSONobject
- plain JS object with some properties (not empty -{}
).PlainObject
is a defined as normal JS object type but with some properties defined, to provide compile-time error when e.g. number is passed as parameter:
type PlainObject = {
[property: string]: any;
}
options
- optional options object, it has two optional properties
interface TransformValdiationOptions {
validator?: ValidatorOptions;
transformer?: ClassTransformOptions;
}
You can use it to pass options for class-validator
(more info) and for class-transformer
(more info).
More info
The class-transformer and class-validator are more powerfull than it was showed in the simple usage sample, so go to their github page and check out they capabilities!