Giter Site home page Giter Site logo

Comments (5)

dougwilson avatar dougwilson commented on April 26, 2024 14

For your example, your files need to be laid out as follows:

app.js:

var app = require('express')();

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

module.exports = app;

io.js:

var io = require('socket.io')();

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

module.exports = io;

bin/www:

#!/usr/bin/env node
var app = require('../app');
var io = require('../io');
var server = require('http').Server(app);

io.attach(server);
server.listen(80);

from generator.

devntd avatar devntd commented on April 26, 2024

Hi all. How to use socket.io with router in expressjs generator? Thanks for all.

from generator.

bassoman avatar bassoman commented on April 26, 2024

I have a branch of express-generator which allows the inclusion of socket.Io. You are welcome to give it a try. git://github.com/bassoman/generator.git#socket.io-server-option

from generator.

weishiji avatar weishiji commented on April 26, 2024

Thanks very much. This problem trouble me for a long time

from generator.

 avatar commented on April 26, 2024

I am working on socket.io in my Nodejs project. I opted for this solution in order to require the io module and send messages via sockets. The problem with it is that whenever you require the io module, you are actually instantiating a new io variable and a new connection binding, which returns the wrong object and io.sockets.connected returns as an empty object. Any thoughts on how to solve this problem ?

from generator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.