DoggerBloger
@DoggerBloger
я начинающий программист python

В чём моя ошибка в коде?

Ребят скажите мне в чём моя ошибка в коде:
// Including libraries

var app = require('http').createServer(handler),
	io = require('socket.io').listen(app),
	static = require('node-static'); // for serving files

// This will make all the files in the current folder
// accessible from the web
var fileServer = new static.Server('./');
	
// This is the port for our web server.
// you will need to go to http://localhost:8080 to see it
app.listen(80);

// If the URL of the socket server is opened in a browser
function handler (request, response) {

	request.addListener('end', function () {
        fileServer.serve(request, response);
    });
}

// Delete this row if you want to see debug messages
io.set('log level', 1);

// Listen for incoming connections from clients
io.sockets.on('connection', function (socket) {

	// Start listening for mouse move events
	socket.on('mousemove', function (data) {
		
		// This line sends the event (broadcasts it)
		// to everyone except the originating client.
		socket.broadcast.emit('moving', data);
	});
});

при компиляции (запуске через nodejs) выдаёт ошибку в консоле
module.js:340     throw err;           ^ Error: Cannot find module '/root/app/app/app.js'     at Function.Module._resolveFilename (module.js:338:15)     at Function.Module._load (module.js:280:25)     at Function.Module.runMain (module.js:497:10)     at startup (node.js:119:16)     at node.js:902:3
  • Вопрос задан
  • 180 просмотров
Пригласить эксперта
Ответы на вопрос 1
@HollaOut
Student. WEB Developer
А вы путь правильный указали? А то я что-то сомневаюсь что он именно такой: '/root/app/app/app.js'
Ответ написан
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы