https://github.com/jacoder7/timestampeddata
A JSON-like data structure for storing and synchronizing data across multiple clients
https://github.com/jacoder7/timestampeddata
parser parsing serialization
Last synced: 3 months ago
JSON representation
A JSON-like data structure for storing and synchronizing data across multiple clients
- Host: GitHub
- URL: https://github.com/jacoder7/timestampeddata
- Owner: JAcoder7
- Created: 2023-11-18T22:44:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-27T15:11:04.000Z (5 months ago)
- Last Synced: 2025-04-10T21:45:27.477Z (3 months ago)
- Topics: parser, parsing, serialization
- Language: TypeScript
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TimeStampedData
A JSON-like data structure for storing and synchronizing data across multiple clientsWork in progress
```
root: {
todoLists: {
ds998146: {
todos: {
0: {
description: "Task 1" | 1704130792494
} | 1704130749583,
1: {
description: "Task 2"
} | 1704130750483
},
linkedUsers: {
af998171: /users/1
}
}
}
users: {
1: {
name: "FirstName" | 1704130853795,
lastName: "LastName" | 1704130938594
} ,
2[rem]: {
name: "Firstname2",
lastName: "LastName" | 1704195674893
}
}
}
```## Query
Example:
```
todoLists.query("./ds998146")
todoLists.query("../users")
todoLists.query("/users")
```