forked from bennysolo/babybot-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
48 lines (48 loc) · 1.11 KB
/
index.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
console.log('Starting Bot...')
let { spawn } = require('child_process')
let path = require('path')
let fs = require('fs')
let package = require('./package.json')
const CFonts = require('cfonts')
CFonts.say('BABYBOT WHATSAPP', {
font: 'chrome',
align: 'center',
gradient: ['red', 'magenta']
})
CFonts.say(`Welcome Ramlan ID`, {
font: 'console',
align: 'center',
gradient: ['red', 'magenta']
})
function start(file) {
let args = [path.join(file), ...process.argv.slice(2)]
CFonts.say([process.argv[0], ...args].join(' '), {
font: 'console',
align: 'center',
gradient: ['red', 'magenta']
})
let p = spawn(process.argv[0], args, {
stdio: ['inherit', 'inherit', 'inherit', 'ipc']
})
.on('message', data => {
console.log('[RECEIVED]', data)
switch (data) {
case 'reset':
p.kill()
start.apply(this, arguments)
break
case 'uptime':
p.send(process.uptime())
break
}
})
.on('error', e => {
console.error(e)
fs.watchFile(args[0], () => {
start()
fs.unwatchFile(args[0])
})
})
// console.log(p)
}
start('ramlan.js')