Last active
August 15, 2023 13:58
-
-
Save laterbreh/5d7bdf03258152c95b8d to your computer and use it in GitHub Desktop.
Express 4 and Socket.io: Passing socket.io to routes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = express(); | |
app.io = require('socket.io')(); | |
var routes = require('./routes/index')(app.io); | |
app.use('/', routes); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Normal code here | |
//then at the bottom: | |
module.exports = function (io) { | |
//Socket.IO | |
io.on('connection', function (socket) { | |
console.log('User has connected to Index'); | |
//ON Events | |
socket.on('admin', function () { | |
console.log('Successful Socket Test'); | |
}); | |
//End ON Events | |
}); | |
return router; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Create HTTP server | |
*/ | |
var server = http.createServer(app); | |
app.io.attach(server); | |
/** | |
* Listen on provided port, on all network interfaces. | |
*/ | |
server.listen(port); | |
server.on('error', onError); | |
server.on('listening', onListening); | |
/** | |
* Normalize a port into a number, string, or false. | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use app.use(routes) instead app.use("/", routes)