https://github.com/skullyflower/json-file-editor
Tiny app to edit JSON Files built with electron and svelte. It's baby's first svelte app.
https://github.com/skullyflower/json-file-editor
electron json svelte
Last synced: about 2 months ago
JSON representation
Tiny app to edit JSON Files built with electron and svelte. It's baby's first svelte app.
- Host: GitHub
- URL: https://github.com/skullyflower/json-file-editor
- Owner: skullyflower
- Created: 2025-09-01T15:57:40.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-26T18:51:15.000Z (9 months ago)
- Last Synced: 2025-09-26T20:49:34.981Z (9 months ago)
- Topics: electron, json, svelte
- Language: TypeScript
- Homepage:
- Size: 735 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# json-file-editor
An Electron application with Svelte and TypeScript
## I learned Svelte over the weekend and built this quick and dirty little json file editor.

You select a json file or a directory where your json files are located.
When the file is opened, it iterates through the keys searching for keys, and nested keys with string values to display as inputs for the form. I think it goes 3 levels deep.
The form does spell checking. You can add and delete values for Arrays.
Then you can click Save to save the changes back to the json file, click on a different file to edit, select a different directory and list of files, or Reset to start over.
## It's a work in progress
- [ ] Add any tests
### Install
```bash
$ npm install
```
### Build
```bash
# For windows
$ npm run build:win
# For macOS
$ npm run build:mac
# For Linux
$ npm run build:linux
```