Nano zoom fix #11
This commit is contained in:
12
frontend/start.js
Normal file
12
frontend/start.js
Normal 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}`);
|
||||
});
|
||||
Reference in New Issue
Block a user