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
process.EventEmitter was deprecated in Node.js 6 and is going to be removed in Node.js 7, use require('events') as a drop-in replacement.
process.EventEmitter
require('events')
Refs: nodejs/node#5049, nodejs/node#6862.
Used on lib/server.js#L253 and in tests.
The text was updated successfully, but these errors were encountered:
+1. Please fix this. This library no longer functions in Node 7, which prevents other libraries -- like websockify -- from working.
Sorry, something went wrong.
This is now completely broken with Node 7.
[fix] No longer use process.EventEmitter #9
02e9aa0
Published 0.0.6 with a fix, apologies for the inconvenience this caused.
No branches or pull requests
process.EventEmitter
was deprecated in Node.js 6 and is going to be removed in Node.js 7, userequire('events')
as a drop-in replacement.Refs: nodejs/node#5049, nodejs/node#6862.
Used on lib/server.js#L253 and in tests.
The text was updated successfully, but these errors were encountered: