{"id":13812602,"url":"https://github.com/knopkem/dicomweb-proxy","last_synced_at":"2025-04-05T00:07:02.503Z","repository":{"id":37855651,"uuid":"234349735","full_name":"knopkem/dicomweb-proxy","owner":"knopkem","description":"A proxy to translate between dicomweb and traditional dicom dimse services (PACS communication)","archived":false,"fork":false,"pushed_at":"2025-03-11T04:45:31.000Z","size":82212,"stargazers_count":74,"open_issues_count":9,"forks_count":21,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-28T23:08:15.417Z","etag":null,"topics":["c-find","c-get","c-move","c-store","dcmtk","dicom","dicomweb","dimse","imaging","javascript","medical","nodejs","ohif","pacs","proxy","qido-rs","rest","viewer","wado-rs","wado-uri"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/knopkem.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-01-16T15:25:02.000Z","updated_at":"2025-03-14T17:05:17.000Z","dependencies_parsed_at":"2023-02-15T07:31:13.585Z","dependency_job_id":"2e9c84b6-1ad3-436b-997d-bc5d005b40ed","html_url":"https://github.com/knopkem/dicomweb-proxy","commit_stats":{"total_commits":243,"total_committers":6,"mean_commits":40.5,"dds":"0.24279835390946503","last_synced_commit":"74db2e0fe768e470142f1f2d7f2ec36ceecc15e7"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopkem%2Fdicomweb-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopkem%2Fdicomweb-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopkem%2Fdicomweb-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopkem%2Fdicomweb-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/knopkem","download_url":"https://codeload.github.com/knopkem/dicomweb-proxy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247266563,"owners_count":20910836,"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":["c-find","c-get","c-move","c-store","dcmtk","dicom","dicomweb","dimse","imaging","javascript","medical","nodejs","ohif","pacs","proxy","qido-rs","rest","viewer","wado-rs","wado-uri"],"created_at":"2024-08-04T04:00:53.673Z","updated_at":"2025-04-05T00:07:02.480Z","avatar_url":"https://github.com/knopkem.png","language":"TypeScript","funding_links":[],"categories":["Libraries"],"sub_categories":["JavaScript"],"readme":"# dicomweb-proxy\n\nA proxy to translate between [DICOMWEB](https://www.dicomstandard.org/dicomweb) and traditional DICOM [DIMSE](https://dicom.nema.org/medical/dicom/current/output/chtml/part07/sect_7.5.html) services\n\n## Description\n* A nodejs tool to easily connect a DICOMWEB capable DICOM viewer to one or more legacy PACS that only know DIMSE services.  \nComes preinstalled with the popular [OHIF DICOM Web Viewer](https://github.com/OHIF/Viewers) (version 3.8.0).\n\nNote: Since OHIF 3 is still beta you can also switch back to OHIF 2 version: just remove the public directory and unzip public.zip to public\n\n## What is it for?\n\n* if you want to view image data from one or more legacy PACS that does not understand DICOMWEB nor come with a web-viewer\n\n## How does it work?\n\n* the app should be installed within the hospital intranet and configured to connect via DIMSE networking to on or more PACS (peers)\n* it hosts a default DICOMweb viewer (OHIF) which can be replaced\n* the webserver exposes the default QIDO and WADOURI/WADORS API needed for the viewer and converts on the fly between the two protocols\n* optionally: you can connect to a [DICOMWEB-WEBSOCKET-BRIDGE](https://github.com/knopkem/dicomweb-websocket-bridge) and expose the data to the public (handle with care!)\n\n## Prerequisite\n\n* nodejs 12 or newer\n\n## Setup Instructions - npm\n\n* install in empty directory:  \n```npm init -y```  \n```npm install dicomweb-proxy```\n\n* update config file located in:  \n```./node_modules/dicomweb-proxy/config```\n\n* or better: create config override, see: [config](https://www.npmjs.com/package/config)\n\n* start proxy:  \n```npx dicomweb-proxy```\n\n## Setup Instructions - source\n\n* clone repository and install dependencies:  \n```npm install```\n\n* update config file located in:  \n```./config```\n\n* start proxy:  \n```npm start```\n\n## What to modify\n* (optional) change our port or AET \n\n```\nconfig.source = {\n  aet: \"SOURCE_AET\",\n  ip: \"SOURCE_IP\",\n  port: \"SOURCE_PORT\"\n};\n```\n\n* change peer(s) to your PACS\n\n```\nconfig.peers = [{\n  aet: \"TARGET_AET\",\n  ip: \"TARGET_IP\",\n  port: \"TARGET_PORT\"\n}, { more peers here...}];\n```\n\n* in case your PACS does not support C-GET, switch to C-Move:  \n```config.useCget = false;```\n\n* update webserver port:  \n```config.webserverPort = 5000;```\n\n* open webbrowser and start viewing:  \ne.g. ```http://localhost:5000```\n\n## License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknopkem%2Fdicomweb-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fknopkem%2Fdicomweb-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknopkem%2Fdicomweb-proxy/lists"}