A SvelteKit 5 web app for viewing EXIF metadata from image files, with full offline support and PWA features. Built with Svelte, Tailwind CSS, and exifr.
- Drag-and-drop or select images (JPG, JPEG, HEIC, HEIF)
- Displays EXIF metadata in a responsive table
- Shows image thumbnails
- Works offline as a PWA (installable on iOS/Android)
- Mobile-friendly UI with Tailwind CSS
Install dependencies:
bun installStart the development server:
bun run devVisit localhost:5173 (or the port shown in your terminal).
Build a static version of the app:
bun run buildThe static site will be output to the build directory.
You can serve the static build locally with:
bun add -g serve
serve build- The app is installable as a PWA and works offline.
- Add to your iOS/Android home screen for a native-like experience.
- SvelteKit 5
- Tailwind CSS
- exifr (for EXIF parsing)
- Vite PWA Plugin
MIT