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.
- Host: GitHub
- URL: https://github.com/sombertm/jsondecorate
- Owner: SomberTM
- Created: 2021-05-27T04:49:18.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-03T16:12:02.000Z (about 5 years ago)
- Last Synced: 2024-10-16T02:01:37.039Z (over 1 year ago)
- Topics: decorators, deserialization, json, mapping, serialization, transformations, typescript
- Language: TypeScript
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
}
```