i
This commit is contained in:
parent
651076d6bd
commit
342e21a229
1 changed files with 8 additions and 6 deletions
14
index.js
14
index.js
|
@ -68,13 +68,15 @@ io.on('connection', (socket) => {
|
|||
resetVM()
|
||||
|
||||
socket.on('runCode', (transactionId, code) => {
|
||||
try {
|
||||
const output = vm.run(code)
|
||||
(async () => {
|
||||
try {
|
||||
const output = vm.run(code)
|
||||
|
||||
socket.emit('codeOutput', transactionId, false, util.inspect(output, { stylize }))
|
||||
} catch (e) {
|
||||
socket.emit('codeOutput', transactionId, true, e.toString())
|
||||
}
|
||||
socket.emit('codeOutput', transactionId, false, util.inspect(output, { stylize }))
|
||||
} catch (e) {
|
||||
socket.emit('codeOutput', transactionId, true, e.toString())
|
||||
}
|
||||
})()
|
||||
})
|
||||
|
||||
socket.on('reset', resetVM)
|
||||
|
|
Loading…
Reference in a new issue