https://github.com/dotupnet/dotup-ts-json-serializer
Small helper creating original deep nested objects from json string
https://github.com/dotupnet/dotup-ts-json-serializer
json json-parser json-serializer typescript
Last synced: 4 months ago
JSON representation
Small helper creating original deep nested objects from json string
- Host: GitHub
- URL: https://github.com/dotupnet/dotup-ts-json-serializer
- Owner: dotupNET
- License: mit
- Created: 2019-01-31T19:27:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T14:50:31.000Z (over 2 years ago)
- Last Synced: 2025-02-12T11:07:00.719Z (4 months ago)
- Topics: json, json-parser, json-serializer, typescript
- Language: TypeScript
- Homepage:
- Size: 443 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/dotupNET/dotup-ts-json-serializer)
# dotup-ts-json-serializer
## USAGE
Typescript:
```typescriptconst jm = new JsonManager();
const p1 = new Player('Player 1');
const p2 = new Player('Player 2');const playerList = [p1, p2];
const toJson = jm.SerializeReplaced(playerList);
const playerListFromJson = jm.Parse(toJson);```
## Docs:
https://dotupnet.github.io/dotup-ts-json-serializer/index.html## repository:
https://github.com/dotupNET/dotup-ts-json-serializer