We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to run a python shell and I want to make sure I can detect when the server receives a ctrl+d.
ctrl+d
I tried:
app.post('/terminals', function (req, res) { // ... term.on('close', function () { console.log('exit status: %d', term.status); }
But at this point the process is gone and I can not send a dedicated ws message unless.
How would you handle that?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to run a python shell and I want to make sure I can detect when the server receives a
ctrl+d
.I tried:
But at this point the process is gone and I can not send a dedicated ws message unless.
How would you handle that?
The text was updated successfully, but these errors were encountered: