https://github.com/vpksoftorg/json-dictionary-browser
A dictionary software using JSON as data format
https://github.com/vpksoftorg/json-dictionary-browser
antd dictionary json pwa pwa-apps react typescript vitejs
Last synced: about 2 months ago
JSON representation
A dictionary software using JSON as data format
- Host: GitHub
- URL: https://github.com/vpksoftorg/json-dictionary-browser
- Owner: VPKSoftOrg
- License: mit
- Created: 2025-04-20T08:47:42.000Z (about 2 months ago)
- Default Branch: develop
- Last Pushed: 2025-04-20T08:52:22.000Z (about 2 months ago)
- Last Synced: 2025-04-20T09:51:21.251Z (about 2 months ago)
- Topics: antd, dictionary, json, pwa, pwa-apps, react, typescript, vitejs
- Language: TypeScript
- Homepage:
- Size: 110 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JSON Dictionary
A [PWA](https://en.wikipedia.org/wiki/Progressive_web_app) dictionary software using JSON as data formatKeeps a dictionary with user-specified entries for searching, editing and saving. Data can also be exported to or imported from JSON file. The data can be searched with text. The search uses [Fuse.js](https://www.fusejs.io).
The screenshots of the app using the [sample data](https://github.com/VPKSoftOrg/json-dictionary-browser/blob/develop/sample_data/chat_abbreviations.json) containing chat abbreviations dictionary:
 ## The data format
A JSON data array with unique *id*, and *custom* fields```json
[
{ "id": 10 , "name": "^5", "description": "High-five" },
{ "id": 11 , "name": "^URS", "description": "Up yours" },
]
```