I wrote this, but errors come up and i dont know how to fix
var http = require('http');
var clientHtml = require('fs').readFileSync('client.html');
var plainHttpServer = http.createServer(function (request, response) {
response.writeHead(200, { 'Content-Type': 'text/html' });
response.end(clientHtml);
}).listen(8080);
var files = require('fs');
var io = require('socket.io').listen(plainHttpServer);
io.set('origins', ['localhost:8080', '127.0.0.1:8080']);
and this error comes, i don't know how to fix, tell me
var io = require('socket.io').listen(plainHttpServer);
^
TypeError: require(...).listen is not a function
The "require (...) is not a function" error occurs for multiple reasons: Forgetting to place a semicolon between the require call and an IIFE Calling the result of require () when the imported file doesn't have a default export of a function Having cyclic dependencies (imports and exports between the same modules)
It's a class, not an instance and thus not something you call .listen () on. Depending upon what exactly you're trying to accomplish, there are a number of different ways you can use that Server class as you can see here in the doc. For example, you can do this: const io = require ('socket.io') (server); ... server.listen (3000)
Since app is your http module var app = require ('http');, you were trying to listen to the node http module (and well you can't). You need to create a server with this http module and then listen to it.
require('socket.io')
returns the socket.io Server class. It's a class, not an instance and thus not something you call .listen()
on. Depending upon what exactly you're trying to accomplish, there are a number of different ways you can use that Server class as you can see here in the doc. For example, you can do this:
const Server = require('socket.io');
const io = new Server(somePort);
or this:
const io = require('socket.io')(somePort);
or to share an existing http server:
const io = require('socket.io')(plainHttpServer);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With