-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNodeJs.php
More file actions
69 lines (64 loc) · 1.54 KB
/
NodeJs.php
File metadata and controls
69 lines (64 loc) · 1.54 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
* Arikaim
*
* @link http://www.arikaim.com
* @copyright Copyright (c) Konstantin Atanasov <info@arikaim.com>
* @license http://www.arikaim.com/license
*
*/
namespace Arikaim\Core\System;
use Arikaim\Core\System\Process;
use Exception;
/**
* NodeJs commands
*/
class NodeJs
{
/**
* Get version
*
* @return string|null
*/
public static function getVersion(): ?string
{
return Self::runCommand(' -v');
}
/**
* Return true if nodejs is installed
*
* @return boolean
*/
public static function isInstalled(): bool
{
return !empty(Self::getVersion());
}
/**
* Run nodejs command
*
* @param string $command
* @param boolean $async
* @param boolean $realTimeOutput
* @return mixed
*/
public static function runCommand(string $command, bool $async = false, bool $realTimeOutput = false)
{
$process = Process::create('node ' . $command,[]);
try {
if ($async == true) {
$process->start();
} else {
if ($realTimeOutput == true) {
$process->run(function ($type, $buffer) {
echo $buffer;
});
}
$process->run();
}
$output = $process->getOutput();
} catch(Exception $e) {
return $e->getMessage();
}
return $output;
}
}