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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:10:11+00:00 2026-06-14T06:10:11+00:00

I have several javascript files that contain different parts of my node application. They

  • 0

I have several javascript files that contain different parts of my node application. They are required using the logic below. I want to access a function in one file1.js from file2.js, but have had little success so far. Any help would be appreciated, thanks.

app.js: This is the file where I start my server and include all the express routes.

require(path_to_file+'/'+file_name)(app, mongoose_database, config_file);  //Require a bunch fo files here in a loop.

file1.js: This is an example file that is required using the code above.

module.exports = function(app, db, conf){
  function test() {  //Some function in a file being exported.
    console.log("YAY");
  }
}

file2.js: This is another file required using the code above. I want to access a function in file1.js from within this file (file2.js).

module.exports = function(app, db, conf){
  function performTest() {  //Some function in a file being exported.
    test();
  }
}
  • 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-14T06:10:12+00:00Added an answer on June 14, 2026 at 6:10 am

    file1.js

    module.exports = function(app, db, conf){
      return function test() {
        console.log("YAY");
      }
    }
    

    Note you need to return the function.

    file2.js

    module.exports = function(app, db, conf){
      return function performTest() {
        var test = require('./file1')(app, db, conf);
        test();
      }
    }
    

    (some other file)

    var test = require('./file2')(app, db, conf);
    test();
    

    or

    require('./file2')(app, db, conf)();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just wondering about this... I have several separate javascript files, that all contain code
I am using jQuery 1.7.1 (but that's probably irrelevant). I have several JavaScript arrays
I have several xml files with different node structure. I want to extract xml
I have several javascript files that during run-time get combined and minified. This is
I have a web page that pulls in several javascript files in the HEAD
So to stay organized, I have several javascript files, even though they all (in
I have a form with several inputs that deal with files. The javascript validation
I have several files comprising a tomcat web application that I need to import
I have a Django application, which requires several JavaScript files. In Chrome I get
I have several large Javascript files that I need to document/digg into. Unfortunately I

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.