{"id":37204709,"url":"https://github.com/fiedka/fiedka","last_synced_at":"2026-01-14T23:35:47.676Z","repository":{"id":40361257,"uuid":"296760947","full_name":"fiedka/fiedka","owner":"fiedka","description":"a visual toolkit for exploring and editing firmware images, running on web platforms","archived":false,"fork":false,"pushed_at":"2024-11-16T01:12:08.000Z","size":8441,"stargazers_count":107,"open_issues_count":68,"forks_count":9,"subscribers_count":7,"default_branch":"main","last_synced_at":"2024-11-16T01:26:33.713Z","etag":null,"topics":["firmware","hacktoberfest","hacktoberfest2020","uefi","wasm","web"],"latest_commit_sha":null,"homepage":"https://fiedka.app/","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/fiedka.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}},"created_at":"2020-09-19T01:08:43.000Z","updated_at":"2024-11-15T12:28:49.000Z","dependencies_parsed_at":"2024-06-20T08:18:06.078Z","dependency_job_id":"5bc87973-31bc-41f2-8ea7-87bc5c4785a6","html_url":"https://github.com/fiedka/fiedka","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/fiedka/fiedka","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiedka%2Ffiedka","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiedka%2Ffiedka/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiedka%2Ffiedka/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiedka%2Ffiedka/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fiedka","download_url":"https://codeload.github.com/fiedka/fiedka/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiedka%2Ffiedka/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28438898,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["firmware","hacktoberfest","hacktoberfest2020","uefi","wasm","web"],"created_at":"2026-01-14T23:35:46.832Z","updated_at":"2026-01-14T23:35:47.655Z","avatar_url":"https://github.com/fiedka.png","language":"JavaScript","readme":"# Fiedka\n\n[Fiedka](https://fiedka.app) is a firmware editor app with back-ends running in\n[WebAssembly](#webassembly).\n\n## Releases\n\n[![Release](\nhttps://github.com/fiedka/fiedka/actions/workflows/shipit.yml/badge.svg)](\nhttps://github.com/fiedka/fiedka/actions/workflows/shipit.yml)\n\nBinaries are [published on GitHub](https://github.com/fiedka/fiedka/releases).\n\n## Development\n\nThe app is based on Electron.\n\nYou need to have a [Node.js](https://nodejs.org/) runtime and `npm` installed.\nFor the back-end, you need [Go](https://go.dev/) version 1.21 at least.\nFind them in your respective OS distribution and install them through your\npackage manager, e.g., `yay -S go nodejs npm`.\n\nTo install the dependencies, run `npm install`.\n\nFor DXE GUIDs, efiXplorer is used as a submodule. Do an initial checkout:\n\n```\ngit submodule update --init --checkout\n```\n\n### Managing Go dependencies\n\nDue to targeting WebAssembly, we need to pass env vars to the `go` command.\n\n**Note**: The `go.mod` file is in `src/`. Run Go commands in that directory.\n\nTo upgrade Fiano, one of Fiedka's core dependencies:\n\n```sh\nGOOS=js GOARCH=wasm go get github.com/linuxboot/fiano@v1.2.0\n```\n\nIf you want to add a new dependency, run:\n\n```sh\nGOOS=js GOARCH=wasm go get github.com/foo-org/foobar-go@v1.2.3\n```\n\n**Note**: Running `go get` may leave inconsistencies in `go.mod`.\nAfterwards, always run:\n\n```sh\ngo mod tidy\n```\n\n### Running\n\n```\nnpm start\n```\n\n### Working with a local copy of Fiano\n\nClone Fiano side by side with Fiedka; i.e., have them like this:\n```\nfiano/\nfiedka/\n```\n\n#### A: Using a Go workspace\n\nCreate this symlink: `ln -s go.workspace go.work`\nThat will tell Go to use `../fiano` instead of `github.com/linuxboot/fiano`.\n\nNote: `go.work` is gitignored so that you cannot accidentally commit it.\n\n#### B: Using a `replace` directive\n\nAdd this line to the bottom of `src/go.mod`:\n\n```\nreplace github.com/linuxboot/fiano =\u003e ../../fiano\n```\n\nBe sure never to have this in a PR to Fiedka. Prefer the workspace method.\n\n## UEFI\n\n### Obtain Test Images\n\nSee [retrage's nightly OVMF builds](https://retrage.github.io/edk2-nightly/).\n\nDownload `RELEASEX64_OVMF.fd` and load it using the file picker.\n\n## WebAssembly\n\n- [Research on WebAssembly](https://github.com/sophoslabs/WebAssembly)\n- [Understanding WebAssembly](\nhttps://www.sophos.com/en-us/medialibrary/PDFs/technical-papers/understanding-web-assembly.pdf)\n- [WASM Tutorial](https://marcoselvatici.github.io/WASM_tutorial/#files)\n\n### WASM issues\n\n- [Most performant way to pass data JS/WASM context](\nhttps://github.com/WebAssembly/design/issues/1231)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffiedka%2Ffiedka","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffiedka%2Ffiedka","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffiedka%2Ffiedka/lists"}