-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_modules.js
30 lines (27 loc) · 1.09 KB
/
install_modules.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const { exec } = require('child_process');
// Komenda do instalacji wymaganych modułów npm
const installCommand = 'npm install readline-sync axios';
// Funkcja do uruchamiania poleceń w terminalu
const runCommand = (command) => {
return new Promise((resolve, reject) => {
exec(command, (error, stdout, stderr) => {
if (error) {
console.error(`Błąd podczas wykonywania komendy: ${error.message}`);
reject(error);
return;
}
if (stderr) {
console.error(`Błąd standardowego wyjścia: ${stderr}`);
reject(stderr);
return;
}
console.log(`Wykonano komendę: ${command}`);
console.log(`Standardowe wyjście: ${stdout}`);
resolve(stdout);
});
});
};
// Instalacja wymaganych modułów npm
runCommand(installCommand)
.then(() => console.log('Wszystkie moduły npm zostały pomyślnie zainstalowane.'))
.catch((error) => console.error('Wystąpił błąd podczas instalowania modułów npm:', error));