Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can't run it #1

Open
booleean opened this issue Aug 1, 2013 · 15 comments
Open

can't run it #1

booleean opened this issue Aug 1, 2013 · 15 comments

Comments

@booleean
Copy link

booleean commented Aug 1, 2013

hello,
could you please give us step by step how to run it .
👍

@booleean
Copy link
Author

booleean commented Aug 2, 2013

it does not find express module so i added it but again it does not find ../bin/builder module !!!

@booleean
Copy link
Author

booleean commented Aug 2, 2013

in socket.io-client\lib\io.ji at line 156 it does not find "../bin/builder" module !!!

@matap
Copy link
Owner

matap commented Aug 2, 2013

I'm sorry, but I have no time to help you. I will not have internet connection for 3 weeks, because I have trip by bicycle... After I will maybe write a step by step instruction.

You must also install jquery-file-upload-middleware.

Have you already run express and socket.io module? Does it go correctly, when you import express, socket.io and jquery-file-upload-middleware to the plain js file?

Are you able to run some basic application like
var app = require('express')()
, server = require('http').createServer(app)
, io = require('socket.io').listen(server);

server.listen(80);

app.get('/', function (req, res) {
res.sendfile(__dirname + '/index.html');
});

io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
????

This code is from http://socket.io/#how-to-use

@booleean
Copy link
Author

booleean commented Aug 2, 2013

thank you for this reponse
all i did is that i dowload the project and i oinstalled mongo and NodeJs and then from the cmd.exe (in the project folder where we have node-server.js) i did this : node node-server.js
then i got the message saying that "express " module was not found so i installed
then i did node node-server.js and got an other error saying that "../bin/builder" module was not found even if i installed it by npm install builder

should i install all modules : express, socket.io , jquery ......? ore it does it automatically ?

thank you again

@booleean
Copy link
Author

booleean commented Aug 2, 2013

i run it on Windows environement

@booleean
Copy link
Author

booleean commented Aug 2, 2013

whene i replace ../bin/builder by "builder" in io.js file it works no errors but again on the website it can't get id from the server

@booleean
Copy link
Author

booleean commented Aug 2, 2013

thebasic code bellow works fine

var app = require('express')()
, server = require('http').createServer(app)
, io = require('socket.io').listen(server);

server.listen(80);

app.get('/', function (req, res) {
res.sendfile(__dirname + '/index.html');
});

io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});

@thefrox
Copy link

thefrox commented Aug 3, 2013

Hello ! I have a mistake. Why soundmanger is not used in any part of project, then is an existing library.
I say that because i can't play any sound when track is not empty

Thx for ur response

@thefrox
Copy link

thefrox commented Aug 3, 2013

At this time all seems work fine but i can hear any sound and the spectrum of song is not visible
I have made a screenshot

dd

Thx to give me information to correct this 2 mistake :D

@booleean
Copy link
Author

booleean commented Aug 6, 2013

hello
i have the samen problem, all seems to work fine but no sound !!!

@thefrox
Copy link

thefrox commented Aug 9, 2013

Hi boolean, thx for ur contribution but have u any idea to resolve this sound problem ? I can help you if u have some idea

@booleean
Copy link
Author

hello ,
i will try to include the soundmanager and to get sound

@thefrox
Copy link

thefrox commented Aug 12, 2013

Ok let me know if you find any issue ! thx a lot

@thefrox
Copy link

thefrox commented Aug 19, 2013

Any solution ?

@booleean
Copy link
Author

I didn't have enough time :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants