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 8881627
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:23:12+00:00 2026-06-14T20:23:12+00:00

I have two files in a node.js project; timer.js and app.js. Basically what timer

  • 0

I have two files in a node.js project; timer.js and app.js.

Basically what timer does is, it has a variable myNumber which increases with a setInterval function. I would like to be able to access that variable whenever I need it, currently I am using the following code:

var myNumber = 0;

setInterval(myMethod, 1);

function myMethod() {
    myNumber++;
    module.exports = myNumber;
}

and I got the feeling this is very wrong (I am a complete newbie), can anyone enlighten me on how to do it the right way?

What I’d like to do is that every time I am getting a variable like this in another file, I get the current value of myNumber. Currently I am doing it this way, and it’s working (still, this must be wrong):

exports.index = function(req, res){
    var timer = require("../timer.js");
    res.end("timer tick at: " + timer);
};
  • 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-06-14T20:23:13+00:00Added an answer on June 14, 2026 at 8:23 pm

    As mentioned in my comment, I would just attach myNumber to module.exports:

    module.exports.myNumber = 0;
    
    setInterval(myMethod, 1);
    
    function myMethod() {
        module.exports.myNumber++;
    }
    

    You can update your exported object as much as you want because other modules that require your module will share the same reference as module.exports in your module code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a node application that is made mainly of two files, the app.js
I have two files: domainList and config.cnf. The domainList file simply has a list
I have two files called file_utils.h and file_utils.cpp which contain some methods and variables
I have two files which both contain a list of words. Is there an
I have two xsd files. 1st file is common.xsd and the other is node.xsd
I have two files client.php and server.php. The client file send a HTTP request
I have two files: public interface PrintService { void print(PrintDetails details); class PrintDetails {
I have two files 1 - index.php 2 - main.php index.php call to main.php
I have two files, A is a subset of B. Both A and B
i have two files:(localhost/template/) index.php template.php each time when i create an article(an article

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.