Nano zoom fix #11

This commit is contained in:
LukeGus
2024-12-05 19:34:17 -06:00
parent 848b388734
commit 7b545367dc
6 changed files with 214 additions and 67 deletions

12
frontend/start.js Normal file
View File

@@ -0,0 +1,12 @@
// start.js
const { spawn } = require('child_process');
const child = spawn('node', ["\"D:/Programming Projects/SSH-Project-JB/backend/server.js\""], {
stdio: 'inherit', // this is key for interactivity
shell: true, // use system shell
});
child.on('exit', function (code, signal) {
console.log('child process exited with ' +
`code ${code} and signal ${signal}`);
});