Thank for reply, Let me explain myself.
I've built a website (not on the world wide web yet). It is built in PHP and it is a live streaming platform. You can think of twitter. So user needs to log in my website in order to live stream webcam, video etc. to their audience. Here the example of how my user will stream their webcam: http://francisshanahan.com/index.php/2011/stream-a-webcam-using-javascript-nodejs-android-opera-mobile-web-sockets-and-html5/ On my computer, I just install Node.js and NPM package. Then I built a server-side app. To use it, I just navigate to the app with my command prompt (Windows) and run the app with easy command like* >node app.js* and leave it alone. On the WAMP folder, I just connect to the app with this simple line of code: * socket = new WebSocket("ws://localhost:8080", "echo-protocol");* That is, and each app will do their job separately. My problem now is to figure out how to put them together on the real world website (maybe same web hosting). People on Google try to replace Apache with Node.js, or redirect path or something else. I don't need to do that. With WebSocket, they can run together seamlessly. And this is the problem I need to solve. Hope I make it clear. Thanks -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
