https://github.com/x8bitrain/folder2json
A web app that lets you open a local folder and convert its paths into a JSON object.
https://github.com/x8bitrain/folder2json
filesystem-access-api json svelte vite
Last synced: about 2 months ago
JSON representation
A web app that lets you open a local folder and convert its paths into a JSON object.
- Host: GitHub
- URL: https://github.com/x8bitrain/folder2json
- Owner: x8BitRain
- Created: 2021-12-26T07:10:39.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-28T06:02:37.000Z (over 3 years ago)
- Last Synced: 2025-02-09T08:22:53.402Z (4 months ago)
- Topics: filesystem-access-api, json, svelte, vite
- Language: Svelte
- Homepage: https://x8bitrain.github.io/folder2json/
- Size: 409 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# folder2json
[https://x8bitrain.github.io/folder2json/](https://x8bitrain.github.io/folder2json/)
A web app that lets you open a local folder and convert its paths into a JSON object.
Uses Svelte + TS + Vite, Filesystem Access API via [browser-fs-access](https://github.com/GoogleChromeLabs/browser-fs-access) and [svelte-jsoneditor](https://github.com/josdejong/svelte-jsoneditor) to render editable JSON.
### Development
Clone the git repository
Install dependencies (once):
```
yarn install
```Start the demo project (at http://localhost:3000):
```
yarn dev
```Build the app.
```
yarn build
```Deploy the app (to GitHub pages).
```
yarn deploy
```