forked from Superalgos/Superalgos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.js
87 lines (74 loc) · 2.68 KB
/
run.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
if (
process.argv.includes("help") ||
process.argv.includes("-help") ||
process.argv.includes("--help") ||
process.argv.includes("h") ||
process.argv.includes("-h") ||
process.argv.includes("--h") ||
process.argv.includes("/h") ||
process.argv.includes("/help")) {
console.log('Superalgos')
console.log('')
console.log('VERSION: Beta 7 SP 1')
console.log('')
console.log('WEB: https://www.superalgos.org')
console.log('')
console.log('GITHUB: https://www.github.com/Superalgos')
console.log('')
console.log('DOCUMENTATION: https://docs.superalgos.org/')
console.log('')
console.log('TELEGRAM SUPPORT: https://t.me/superalgoscommunity')
console.log('')
console.log('USAGE: node run [help] [noBrowser] [minMemo]')
console.log('')
console.log('OPTIONS:')
console.log('')
console.log(' help: Optional. Use it to see this helping information.')
console.log(' noBrowser: Optional. Use it to launch Superalgos Client only. The UI will not be loaded.')
console.log(' minMemo: Optional. Use it when your hardware has less than 8 Gb or memory.')
console.log('')
console.log('If you are having an error while trying to run this Client, consider this:')
fatalErrorHelp()
return
}
console.log('')
console.log('OPTIONS ACCEPTED:')
console.log('')
let optionsAccepted = 0
let options = {
execArgv: ['--max-old-space-size=8192'],
stdio: 'inherit'
}
if (process.argv.includes("minMemo")) {
options = {
stdio: 'inherit'
}
optionsAccepted++
console.log('minMemo ............................ Running with Minimun Required Memory.')
}
if (process.argv.includes("noBrowser")) {
optionsAccepted++
console.log('noBrowser .......................... Running without User Interface.')
}
if (optionsAccepted === 0) {
console.log('none ............................... Running without any command line options.')
}
console.log('')
try {
const { fork } = require('child_process')
fork('./Client/client.js', process.argv, options)
} catch (err) {
console.log('')
console.log('Fail to create Client Process.')
console.log('')
fatalErrorHelp()
}
function fatalErrorHelp() {
console.log('')
console.log('* If your device does not have MORE than 8GB of RAM then please use the minMemo option.')
console.log('* If your OS does not have a user interface, please use the noBrowser option.')
console.log('')
console.log('If you continue having trouble to start the Client try:')
console.log('')
console.log('node run minMemo noBrowser')
}