Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7444259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T11:28:28+00:00 2026-05-29T11:28:28+00:00

Are file modules in Node.js aware of global vars? If not, how can I

  • 0

Are file modules in Node.js aware of global vars? If not, how can I get a variable to a file module I’m wanting to load? For example, right now I have a single script that runs 3 servers. One for a game lobby, one for the socket router, and one for the administration. I’d like to break the servers into separate file modules. The problem is, the socket router needs to have access to the game lobby, and the game lobby and administration modules need access to the socket router. Is this possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T11:28:28+00:00Added an answer on May 29, 2026 at 11:28 am

    Not really — Variables defined in files/modules are local to the module.

    You could create a common module that exports the needed server variables, and require that module in each server, but a better approach might be using Dependency Injection…

    Each server needs to have a way of receiving it’s dependent parameters (in this case, via exporting a “start” function with parameter of the servers it requires). On startup, a master server “injects” the references to those other servers.

    var socketRouter = require('./socketRouter.js');
    var gameLobby = require('./gameLobby.js');
    var admin = require('./admin.js');
    socketRouter.start(gameLobby);
    gameLobby.start(socketRouter);
    admin.start(socketRouter);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ruby file as follows: module Example class Myclass def t_st Hello
I know that global variables are bad. But if I am using node's module
I have two different modules that need access to a single file (One will
I need to define multiple modules in the same file. I would like to
When I easy_install some python modules, warnings such as: <some module>: module references __file__
I have a big project compiled into libProject.so-file (shared library), I made some modules
I use the Remote File module for a cck field displaying a remote image.
I'm using the File::Find module to traverse a directory tree. Once I find a
I have a file that I want to read in using the File::Slurp module
I've developed a simple file browsing HTTP module which uses virtual paths (i.e. paths

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.