{"id":50533072,"url":"https://github.com/umd-lib/umd-iiif-viewer","last_synced_at":"2026-06-03T15:02:03.387Z","repository":{"id":360728847,"uuid":"1243798038","full_name":"umd-lib/umd-iiif-viewer","owner":"umd-lib","description":"UMD Libraries' Mirador 4-based IIIF image viewer","archived":false,"fork":false,"pushed_at":"2026-05-28T17:32:48.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-28T19:23:09.476Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/umd-lib.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":"2026-05-19T17:13:14.000Z","updated_at":"2026-05-28T17:32:52.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/umd-lib/umd-iiif-viewer","commit_stats":null,"previous_names":["umd-lib/umd-viewer","umd-lib/umd-iiif-viewer"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/umd-lib/umd-iiif-viewer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fumd-iiif-viewer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fumd-iiif-viewer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fumd-iiif-viewer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fumd-iiif-viewer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/umd-lib","download_url":"https://codeload.github.com/umd-lib/umd-iiif-viewer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fumd-iiif-viewer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33870026,"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-03T02:00:06.370Z","response_time":59,"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":[],"created_at":"2026-06-03T15:02:02.473Z","updated_at":"2026-06-03T15:02:03.383Z","avatar_url":"https://github.com/umd-lib.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# umd-iiif-viewer\n\nUMD Libraries' [Mirador 4]-based [IIIF] image viewer\n\n## Requires\n\n* NodeJS 24+\n\n## Development Setup\n\n```zsh\ngit clone git@github.com:umd-lib/umd-iiif-viewer.git\ncd umd-iiif-viewer\nnpm install\nnpm run dev\n```\n\nThe umd-iiif-viewer application will now be running in development mode (with\nautomatic reload on code changes) at \u003chttp://localhost:5173\u003e.\n\n## Static Build\n\n```zsh\nnpm run build\n```\n\nStatic build files with be written to the `dist` directory.\n\n## Docker Image\n\n```zsh\ndocker build -t docker.lib.umd.edu/iiif-viewer .\n\ndocker run -it --rm -p 8888:80 docker.lib.umd.edu/iiif-viewer\n```\n\nThe application will be at \u003chttp://localhost:8888/\u003e\n\nThe final Docker image is based on the [Static Web Server] (SWS)\n[Docker image](https://static-web-server.net/features/docker/).\n\n## API\n\nThe umd-iiif-viewer accepts three query parameters:\n\n* **`manifest`** The URI of the [IIIF] manifest to load\n* **`q`** Initial query for the content search within the loaded manifest\n* **`n`** Canvas index to display first; note that this is a 0-based index, so\n  the first page will actually be `n=0`\n\nAssuming the application is deployed at \u003chttp://localhost:8888/viewer/\u003e,\nhere are some example URLs demonstrating these parameters:\n\n* Display the manifest at \u003chttp://iiif.example.com/manifest/123\u003e:\n  * \u003chttp://localhost:8888/viewer/?manifest=http://iiif.example.com/manifest/123\u003e\n\n* Display the manifest at \u003chttp://iiif.example.com/manifest/123\u003e and initialize\na content search for \"university\":\n  * \u003chttp://localhost:8888/viewer/?manifest=http://iiif.example.com/manifest/123\u0026q=university\u003e\n\n* Display the manifest at \u003chttp://iiif.example.com/manifest/123\u003e and open to the\nthird canvas:\n  * \u003chttp://localhost:8888/viewer/?manifest=http://iiif.example.com/manifest/123\u0026n=2\u003e\n\nAdditionally, if no `manifest` parameter is given, the application will display\na simple web form that can be interactively filled out with the above parameters.\n\n## License\n\nApache-2.0\n\nSee the [LICENSE](LICENSE) file for license rights and limitations.\n\n[Mirador 4]: https://projectmirador.org/\n[IIIF]: https://iiif.io/\n[Static Web Server]: https://static-web-server.net/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumd-lib%2Fumd-iiif-viewer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fumd-lib%2Fumd-iiif-viewer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumd-lib%2Fumd-iiif-viewer/lists"}