{"id":21848924,"url":"https://github.com/refilelabs/image","last_synced_at":"2025-10-08T11:30:20.422Z","repository":{"id":261611326,"uuid":"883985722","full_name":"refilelabs/image","owner":"refilelabs","description":"Image layer repository holding all image tooling.","archived":false,"fork":false,"pushed_at":"2025-01-05T22:54:04.000Z","size":202,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-05T23:27:16.125Z","etag":null,"topics":["image-processing","rust","wasm","zig"],"latest_commit_sha":null,"homepage":"http://refilelabs.com","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/refilelabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-05T23:38:39.000Z","updated_at":"2025-01-05T22:54:05.000Z","dependencies_parsed_at":"2024-11-07T13:56:18.633Z","dependency_job_id":"1585f326-f7a1-4739-923a-a33776ac881a","html_url":"https://github.com/refilelabs/image","commit_stats":null,"previous_names":["refilelabs/image"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refilelabs%2Fimage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refilelabs%2Fimage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refilelabs%2Fimage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refilelabs%2Fimage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/refilelabs","download_url":"https://codeload.github.com/refilelabs/image/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235706040,"owners_count":19032597,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["image-processing","rust","wasm","zig"],"created_at":"2024-11-28T00:09:28.247Z","updated_at":"2025-10-08T11:30:20.416Z","avatar_url":"https://github.com/refilelabs.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# refilelabs/image\n\n[![Crates.io](https://img.shields.io/crates/v/refilelabs-image.svg)](https://crates.io/crates/refilelabs-image)\n[![Documentation](https://docs.rs/refilelabs-image/badge.svg)](https://docs.rs/refilelabs-image)\n[![NPM Version](https://img.shields.io/npm/v/%40refilelabs%2Fimage)](https://www.npmjs.com/package/@refilelabs/image)\n\nThe `refilelabs/image` repository provides core utilities for image manipulation within the [**re;file labs**](https://refilelabs.com) platform. It offers robust, high-performance image processing features powered by WebAssembly (WASM) for secure, browser-based operations.\n\n## Features\n\n- **Image Conversion**: Convert images between various formats (e.g., JPEG, PNG, WebP).\n- **Image Editing**: Resize, crop, rotate, and flip images with ease. (Coming soon)\n- **Image Compression**: Compress images to reduce file size while maintaining quality.\n- **Image Viewing**: View images in a responsive, interactive viewer.\n- **Metadata Editing**: View and edit metadata for supported image formats.\n- **WebAssembly-Powered**: All operations run securely in the browser, leveraging WASM for speed and privacy.\n\n## Getting Started\n\n### Prerequisites\n\n- **bun**: The package manager and runtime used within the **re;file labs** ecosystem.\n- **Rust**: For compiling WebAssembly components.\n- **wasm-pack**: For building and packaging WebAssembly modules.\n\n### Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/refilelabs/image.git\n   cd image\n   ```\n\n2. Install dependencies (also builds WebAssembly modules):\n\n   **Using Bun**:\n   ```bash\n   bun i\n   ```\n\n   **Using npm**:\n   ```bash\n   npm install\n   ```\n\n   **Using Yarn**:\n   ```bash\n   yarn install\n   ```\n\n   **Using pnpm**:\n   ```bash\n   pnpm install\n   ```\n\n1. Start the development server:\n\n   **Using Bun**:\n   ```bash\n   bun dev\n   ```\n\n   **Using npm**:\n   ```bash\n   npm run dev\n   ```\n\n   **Using Yarn**:\n   ```bash\n   yarn dev\n   ```\n\n   **Using pnpm**:\n   ```bash\n   pnpm dev\n   ```\n\n## Usage\n\n### Components\n\nIf you want to use the image utility components in your own project, either include this nuxt layer using the [extends feature](https://nuxt.com/docs/getting-started/layers#usage):\n```ts\nexport default defineNuxtConfig({\n  extends: [\n   'github:refilelabs/image',\n  ]\n})\n```\n\n### Programmatic Usage\n\nIn case you want to use the actual wasm modules in your project, you can import them directly from the [`@refilelabs/image`](https://www.npmjs.com/package/@refilelabs/image/v/next) package.\n\n## Project Structure\n\n```\nrefilelabs/image\n├── .playground/         # Temporary playground for testing\n├── wasm/                # WebAssembly modules\n├── components/          # Image processing components\n├── composables/         # Shared Vue composables\n├── workers/             # Web Workers for offloading compute-intensive tasks\n└── tests/               # Unit tests\n```\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n---\n\n[**re;file labs**](https://refilelabs.com) — Your secure, private file utility suite.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frefilelabs%2Fimage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frefilelabs%2Fimage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frefilelabs%2Fimage/lists"}