Nano zoom fix #11

This commit is contained in:
LukeGus
2024-12-05 19:19:04 -06:00
parent b6a3f881a8
commit 1a0d224ae0
10 changed files with 256 additions and 74 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}`);
});