This commit is contained in:
mario
2025-03-11 13:16:07 +07:00
commit 3c64adc353
215 changed files with 111738 additions and 0 deletions

18
bin/dicomweb-proxy Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env node
"use strict";
const os = require('os');
var spawn = require('child_process').spawn;
console.log('starting dicomweb-proxy...');
process.chdir('./node_modules/dicomweb-proxy');
if (os.platform() === 'win32') {
var cmd = 'npm.cmd'
} else {
var cmd = 'npm'
}
spawn('npx.cmd', [ 'ts-node', 'src/app.ts'], {stdio: 'inherit'});