A modified version of DICOM PACS implementation
npm install modified-dicom-pacsnpm init -y`
`npm install dicomweb-pacs`
* update config file located in:
`./node_modules/dicomweb-pacs/config`
* start pacs:
`npx dicomweb-pacs`
Setup Instructions - source
* clone repository and install dependencies
`npm install`
* update config file located in:
`./config`
* run:
`npm start`
* import DICOM images: use any c-store-scu to push to internal store-scp
`(AET: DICOMWEB_PACS port: 8888)`
* (or use internal store-scu): put DICOM into import directory and run
`npm run import` (server needs to be running)
* open webbrowser and start viewing
`http://localhost:5001`
What to modify
* (optional) change our port or AET
`
config.source = {
aet: "OUR_AET",
ip: "OUR_IP",
port: "OUR_PORT"
};
`
* add peers to your PACS
`
config.peers = [
{
aet: "PEER_AET",
ip: "PEER_IP",
port: "PEER_PORT"
}];
`
* update webserver port:
`config.webserverPort = 5001;``