{"id":50820746,"url":"https://github.com/studiowebux/pixel-it","last_synced_at":"2026-06-13T13:34:53.672Z","repository":{"id":363231622,"uuid":"865013836","full_name":"studiowebux/pixel-it","owner":"studiowebux","description":"Simple web based tool to pixelate images","archived":false,"fork":false,"pushed_at":"2026-06-08T02:30:36.000Z","size":3897,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-13T13:34:51.817Z","etag":null,"topics":["deno","file-upload","hono","htmx","jimp","picocss","pixel","pixel-art","pixelate"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/studiowebux.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-29T18:57:37.000Z","updated_at":"2026-06-08T02:30:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/studiowebux/pixel-it","commit_stats":null,"previous_names":["studiowebux/pixel-it"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/studiowebux/pixel-it","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiowebux%2Fpixel-it","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiowebux%2Fpixel-it/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiowebux%2Fpixel-it/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiowebux%2Fpixel-it/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/studiowebux","download_url":"https://codeload.github.com/studiowebux/pixel-it/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiowebux%2Fpixel-it/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34286975,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["deno","file-upload","hono","htmx","jimp","picocss","pixel","pixel-art","pixelate"],"created_at":"2026-06-13T13:34:53.025Z","updated_at":"2026-06-13T13:34:53.666Z","avatar_url":"https://github.com/studiowebux.png","language":"JavaScript","funding_links":["https://www.buymeacoffee.com/studiowebux"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003ch2\u003ePixel-it\u003c/h2\u003e\n\n\u003cp\u003eA Deno Web Based Application to pixelate your images\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/studiowebux/pixel-it/issues\"\u003eReport Bug\u003c/a\u003e\n  ·\n  \u003ca href=\"https://github.com/studiowebux/pixel-it/issues\"\u003eRequest Feature\u003c/a\u003e\n\u003c/p\u003e\n\u003c/div\u003e\n\n---\n\n## About\n\nSimple tool build with Jimp to pixelate images.\n\n### Screenshots\n\n![Upload Section](./screenshots/1.png)\n![Pixelated Section](./screenshots/2.png)\n\n---\n\n## Installation and Usage\n\n1. Install deno: https://deno.com (*Tested with Deno 2*)\n2. `deno serve --watch server.ts`\n3. Navigate to `http://localhost:8000`\n4. Upload your image\n5. You will get multiple versions (2, 3, 4, 5, 6, 8 pixels)\n6. Voila !\n\n### Docker\n\n```bash\ndocker build -t pixel-it .\ndocker run --name pixel-it -d -p 8000:8000 pixel-it\n```\n\n---\n\n### Releases and Github Actions\n\n```bash\ngit tag -a X.Y.Z -m \"Version X.Y.Z\"\ngit push origin tags/X.Y.Z\n```\n\n---\n\n## Contributing\n\n1. Fork the project\n2. Create a Feature Branch\n3. Commit your changes\n4. Push your changes\n5. Create a PR\n\n\u003cdetails\u003e\n\u003csummary\u003eWorking with your local branch\u003c/summary\u003e\n\n**Branch Checkout:**\n\n```bash\ngit checkout -b \u003cfeature|fix|release|chore|hotfix\u003e/prefix-name\n```\n\n\u003e Your branch name must starts with [feature|fix|release|chore|hotfix] and use a / before the name;\n\u003e Use hyphens as separator;\n\u003e The prefix correspond to your Kanban tool id (e.g. abc-123)\n\n**Keep your branch synced:**\n\n```bash\ngit fetch origin\ngit rebase origin/master\n```\n\n**Commit your changes:**\n\n```bash\ngit add .\ngit commit -m \"\u003cfeat|ci|test|docs|build|chore|style|refactor|perf|BREAKING CHANGE\u003e: commit message\"\n```\n\n\u003e Follow this convention commitlint for your commit message structure\n\n**Push your changes:**\n\n```bash\ngit push origin \u003cfeature|fix|release|chore|hotfix\u003e/prefix-name\n```\n\n**Examples:**\n\n```bash\ngit checkout -b release/v1.15.5\ngit checkout -b feature/abc-123-something-awesome\ngit checkout -b hotfix/abc-432-something-bad-to-fix\n```\n\n```bash\ngit commit -m \"docs: added awesome documentation\"\ngit commit -m \"feat: added new feature\"\ngit commit -m \"test: added tests\"\n```\n\n\u003c/details\u003e\n\n## License\n\nDistributed under the MIT License. See LICENSE for more information.\n\n## Contact\n\n- Tommy Gingras @ tommy@studiowebux.com | Studio Webux\n\n\u003cdiv\u003e\n\u003cb\u003e | \u003c/b\u003e\n\u003ca href=\"https://www.buymeacoffee.com/studiowebux\" target=\"_blank\"\n      \u003e\u003cimg\n        src=\"https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png\"\n        alt=\"Buy Me A Coffee\"\n        style=\"height: 30px !important; width: 105px !important\"\n/\u003e\u003c/a\u003e\n\u003cb\u003e | \u003c/b\u003e\n\u003ca href=\"https://webuxlab.com\" target=\"_blank\"\n      \u003e\u003cimg\n        src=\"https://webuxlab-static.s3.ca-central-1.amazonaws.com/logoAmpoule.svg\"\n        alt=\"Webux Logo\"\n        style=\"height: 30px !important\"\n/\u003e Webux Lab\u003c/a\u003e\n\u003cb\u003e | \u003c/b\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstudiowebux%2Fpixel-it","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstudiowebux%2Fpixel-it","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstudiowebux%2Fpixel-it/lists"}