An open API service indexing awesome lists of open source software.

https://github.com/sombertm/jsondecorate

Use typescript decorates to automatically serialize and deserialze json data to strongly typed classes. Supports data transformations and mappings.
https://github.com/sombertm/jsondecorate

decorators deserialization json mapping serialization transformations typescript

Last synced: 3 months ago
JSON representation

Use typescript decorates to automatically serialize and deserialze json data to strongly typed classes. Supports data transformations and mappings.

Awesome Lists containing this project

README

          

# __json-decorate__
##### Serialize and deserialize json data to and from classes using experimental decorators

### Requirements
json-decorate makes use of typescripts experimental decorators and therefore must be enabled in your tsconfig
###### **tsconfig.json**
```json
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
}
```