Bonjour à tous,
J'ai un soucis au niveau du déploiement de mon application Node.js qui comprend une partie en websocket (librairie socket.io).
L'erreur intervient au niveau de mon fichier server.js sur la dernière ligne ci-dessous:
Server.listen(configuration.serverConfiguration.port, configuration.serverConfiguration.hostname, () => {
console.log("api started");
});
-----------------------------------
//serverConfiguration
hostname: 'localhost',
port: 'passenger'
----------------------------------
Avez-vous déjà eu le même problème ? Je bloque car aucune documentation, aucun historique
Pour info mon fichier socket.js qui est exporté dans mon server.js
let http = require('http').Server(server);
http.listen(3000, function () {
console.log('listenning in http://localhost 3000');
});
let io = require('socket.io').listen(http);
io.on('connection', (socket) => {
........
});
Mille mercis pour votre aide
J'ai un soucis au niveau du déploiement de mon application Node.js qui comprend une partie en websocket (librairie socket.io).
L'erreur intervient au niveau de mon fichier server.js sur la dernière ligne ci-dessous:
Server.listen(configuration.serverConfiguration.port, configuration.serverConfiguration.hostname, () => {
console.log("api started");
});
-----------------------------------
//serverConfiguration
hostname: 'localhost',
port: 'passenger'
----------------------------------
Avez-vous déjà eu le même problème ? Je bloque car aucune documentation, aucun historique
Pour info mon fichier socket.js qui est exporté dans mon server.js
let http = require('http').Server(server);
http.listen(3000, function () {
console.log('listenning in http://localhost 3000');
});
let io = require('socket.io').listen(http);
io.on('connection', (socket) => {
........
});
Mille mercis pour votre aide