Socket.io
- Accueil
- Forum
- Programmation
- JavaScript
- Socket.io
mister1610 Le 9 août 2019 à 23:04 (Édité le 16 août 2019 à 21:12)
Je vous explique mon problème avec socket.io.
j'ai installer node.js la version 12.8.0 et quand je suis le tuto de Grafikart, lui à un retour dans le terminal quand il lance le fichier js comme par exemple l'info comme quoi socket.io est en marche alors que quand je lance le fichier je n'ai rien qui s'affiche dans mon terminal avez-vous une solution ?
bonne soirée
SkinDePewDiePie_ Le 10 août 2019 à 16:04 (Édité le 1 janvier 1970 à 01:00)
-Matteo
mister1610 Le 11 août 2019 à 22:06 (Édité le 1 janvier 1970 à 01:00)
Voici mes script :
app.js
var http = require('http');
httpServer = http.createServer(function(req, res) {
res.end('Hello World');
});
httpServer.listen(1337);
var io = require('socket.io').listen(httpServer);
index.html
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js" />
<script src="http://localhost:1337/socket.io/socket.io.js" />
<script src="js/app.js" />
</body>
</html>
Ce code-ci ne me dit pas que socket.io est bien démarrer. mister1610 Le 16 août 2019 à 21:12 (Édité le 1 janvier 1970 à 01:00)
SkinDePewDiePie_ Le 17 août 2019 à 20:11 (Édité le 1 janvier 1970 à 01:00)