У меня в ноде есть установленный модуль
serve. Как можно запустить его к определенной директори?
Пытался запустить просто так, но не получилось( Но глобально модуль устанавливать незя...
const { exec } = require('child_process');
module.exports = class Server {
projectPath = null;
constructor(projectPath) {
if (typeof projectPath !== "string") {
throw new Error("Project path must be a string!");
}
this.projectPath = projectPath;
}
start() {
exec(`serve ${this.projectPath}`, (error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
return;
}
console.log(`stdout: ${stdout}`);
console.error(`stderr: ${stderr}`);
});
}
}
'serve' is not recognized as an internal or external command,
operable program or batch file.