How to use socket.io across diffrent routes in node.js












0















I have different routes in my node js application and i have to use socket.io in every route to make my node and react js application realtime. But, i have the below structure of my node js application.



router.js



const express = require('express');
const router = express.Router();

const worksheetController = require('../controllers/worksheet')
const attendenceController = require('../controllers/attendence')

router.route('/worksheets')
.get(
worksheetController.getWorksheet
)
.post(
worksheetController.validateWorksheet,
worksheetController.addWorksheet,
attendenceController.markAttendence
)

router.route('/attendances')
.get(
attendenceController.getAttendance
)

module.exports = router;


server.js



const express = require('express');
const router = require('./router');

const app = express();
app.use('/api', router);

app.listen('5000', () => {
console.log('Listening on port');
});

module.exports = app;



So, I want to know



1) Should i need to use http module to create a server, if i need to use socket.io.



2) How can i use socket.io for diffrent routes.




I found posts that match's to my question on stackoverflow, which is this, this and this. But i don't think, that works for me. So please help me.










share|improve this question





























    0















    I have different routes in my node js application and i have to use socket.io in every route to make my node and react js application realtime. But, i have the below structure of my node js application.



    router.js



    const express = require('express');
    const router = express.Router();

    const worksheetController = require('../controllers/worksheet')
    const attendenceController = require('../controllers/attendence')

    router.route('/worksheets')
    .get(
    worksheetController.getWorksheet
    )
    .post(
    worksheetController.validateWorksheet,
    worksheetController.addWorksheet,
    attendenceController.markAttendence
    )

    router.route('/attendances')
    .get(
    attendenceController.getAttendance
    )

    module.exports = router;


    server.js



    const express = require('express');
    const router = require('./router');

    const app = express();
    app.use('/api', router);

    app.listen('5000', () => {
    console.log('Listening on port');
    });

    module.exports = app;



    So, I want to know



    1) Should i need to use http module to create a server, if i need to use socket.io.



    2) How can i use socket.io for diffrent routes.




    I found posts that match's to my question on stackoverflow, which is this, this and this. But i don't think, that works for me. So please help me.










    share|improve this question



























      0












      0








      0


      1






      I have different routes in my node js application and i have to use socket.io in every route to make my node and react js application realtime. But, i have the below structure of my node js application.



      router.js



      const express = require('express');
      const router = express.Router();

      const worksheetController = require('../controllers/worksheet')
      const attendenceController = require('../controllers/attendence')

      router.route('/worksheets')
      .get(
      worksheetController.getWorksheet
      )
      .post(
      worksheetController.validateWorksheet,
      worksheetController.addWorksheet,
      attendenceController.markAttendence
      )

      router.route('/attendances')
      .get(
      attendenceController.getAttendance
      )

      module.exports = router;


      server.js



      const express = require('express');
      const router = require('./router');

      const app = express();
      app.use('/api', router);

      app.listen('5000', () => {
      console.log('Listening on port');
      });

      module.exports = app;



      So, I want to know



      1) Should i need to use http module to create a server, if i need to use socket.io.



      2) How can i use socket.io for diffrent routes.




      I found posts that match's to my question on stackoverflow, which is this, this and this. But i don't think, that works for me. So please help me.










      share|improve this question
















      I have different routes in my node js application and i have to use socket.io in every route to make my node and react js application realtime. But, i have the below structure of my node js application.



      router.js



      const express = require('express');
      const router = express.Router();

      const worksheetController = require('../controllers/worksheet')
      const attendenceController = require('../controllers/attendence')

      router.route('/worksheets')
      .get(
      worksheetController.getWorksheet
      )
      .post(
      worksheetController.validateWorksheet,
      worksheetController.addWorksheet,
      attendenceController.markAttendence
      )

      router.route('/attendances')
      .get(
      attendenceController.getAttendance
      )

      module.exports = router;


      server.js



      const express = require('express');
      const router = require('./router');

      const app = express();
      app.use('/api', router);

      app.listen('5000', () => {
      console.log('Listening on port');
      });

      module.exports = app;



      So, I want to know



      1) Should i need to use http module to create a server, if i need to use socket.io.



      2) How can i use socket.io for diffrent routes.




      I found posts that match's to my question on stackoverflow, which is this, this and this. But i don't think, that works for me. So please help me.







      javascript node.js socket.io






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 2 at 5:11







      Rajat

















      asked Jan 1 at 8:56









      RajatRajat

      14816




      14816
























          1 Answer
          1






          active

          oldest

          votes


















          0















          1. You can use http module or other module in document of socket.io for to use socket.io

          2. I don't sure your idea. But when you want implement socket.io. I think you should run another node app. (Meaning you have 2 nodejs app. 1 for node http normally and 1 for socket.io app). After you can use path option when init socket.io app https://socket.io/docs/server-api/#new-Server-httpServer-options. Because when you deploy to production. You should run your socket.io app with beside of proxy serve (ex: nginx). Socket.io basically support multi transport and protocol. So if use with http restful. How about config your connection mapping from nginx to socket.io app, how you setup error handler ?.


          In your case:
          + Create new file socket.js:



          // socket.js
          var http = require('http')
          var socket_io = require('socket.io')

          function init_socket(app) {
          const server = http.Server(app)
          const io = socket_io(server, { path: 'your-path-want-for-socket-io' }) // default: /socket.io/
          }


          import {init_socket} from 'socket.js'
          init_socket(app)





          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994185%2fhow-to-use-socket-io-across-diffrent-routes-in-node-js%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0















            1. You can use http module or other module in document of socket.io for to use socket.io

            2. I don't sure your idea. But when you want implement socket.io. I think you should run another node app. (Meaning you have 2 nodejs app. 1 for node http normally and 1 for socket.io app). After you can use path option when init socket.io app https://socket.io/docs/server-api/#new-Server-httpServer-options. Because when you deploy to production. You should run your socket.io app with beside of proxy serve (ex: nginx). Socket.io basically support multi transport and protocol. So if use with http restful. How about config your connection mapping from nginx to socket.io app, how you setup error handler ?.


            In your case:
            + Create new file socket.js:



            // socket.js
            var http = require('http')
            var socket_io = require('socket.io')

            function init_socket(app) {
            const server = http.Server(app)
            const io = socket_io(server, { path: 'your-path-want-for-socket-io' }) // default: /socket.io/
            }


            import {init_socket} from 'socket.js'
            init_socket(app)





            share|improve this answer




























              0















              1. You can use http module or other module in document of socket.io for to use socket.io

              2. I don't sure your idea. But when you want implement socket.io. I think you should run another node app. (Meaning you have 2 nodejs app. 1 for node http normally and 1 for socket.io app). After you can use path option when init socket.io app https://socket.io/docs/server-api/#new-Server-httpServer-options. Because when you deploy to production. You should run your socket.io app with beside of proxy serve (ex: nginx). Socket.io basically support multi transport and protocol. So if use with http restful. How about config your connection mapping from nginx to socket.io app, how you setup error handler ?.


              In your case:
              + Create new file socket.js:



              // socket.js
              var http = require('http')
              var socket_io = require('socket.io')

              function init_socket(app) {
              const server = http.Server(app)
              const io = socket_io(server, { path: 'your-path-want-for-socket-io' }) // default: /socket.io/
              }


              import {init_socket} from 'socket.js'
              init_socket(app)





              share|improve this answer


























                0












                0








                0








                1. You can use http module or other module in document of socket.io for to use socket.io

                2. I don't sure your idea. But when you want implement socket.io. I think you should run another node app. (Meaning you have 2 nodejs app. 1 for node http normally and 1 for socket.io app). After you can use path option when init socket.io app https://socket.io/docs/server-api/#new-Server-httpServer-options. Because when you deploy to production. You should run your socket.io app with beside of proxy serve (ex: nginx). Socket.io basically support multi transport and protocol. So if use with http restful. How about config your connection mapping from nginx to socket.io app, how you setup error handler ?.


                In your case:
                + Create new file socket.js:



                // socket.js
                var http = require('http')
                var socket_io = require('socket.io')

                function init_socket(app) {
                const server = http.Server(app)
                const io = socket_io(server, { path: 'your-path-want-for-socket-io' }) // default: /socket.io/
                }


                import {init_socket} from 'socket.js'
                init_socket(app)





                share|improve this answer














                1. You can use http module or other module in document of socket.io for to use socket.io

                2. I don't sure your idea. But when you want implement socket.io. I think you should run another node app. (Meaning you have 2 nodejs app. 1 for node http normally and 1 for socket.io app). After you can use path option when init socket.io app https://socket.io/docs/server-api/#new-Server-httpServer-options. Because when you deploy to production. You should run your socket.io app with beside of proxy serve (ex: nginx). Socket.io basically support multi transport and protocol. So if use with http restful. How about config your connection mapping from nginx to socket.io app, how you setup error handler ?.


                In your case:
                + Create new file socket.js:



                // socket.js
                var http = require('http')
                var socket_io = require('socket.io')

                function init_socket(app) {
                const server = http.Server(app)
                const io = socket_io(server, { path: 'your-path-want-for-socket-io' }) // default: /socket.io/
                }


                import {init_socket} from 'socket.js'
                init_socket(app)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 11 at 5:16









                Nguyen HienNguyen Hien

                1




                1
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994185%2fhow-to-use-socket-io-across-diffrent-routes-in-node-js%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Monofisismo

                    Angular Downloading a file using contenturl with Basic Authentication

                    Olmecas