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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T14:21:05+00:00 2026-06-13T14:21:05+00:00

I want to use one module feature within another module file main.js var _

  • 0

I want to use one module feature within another module

file main.js

var _ = require("./underscore.js");
var foo = require("./bar.js");
foo.publish(...);

file bar.js

(function(e) {
    var array = [...];
    e.publish = function(t, args) {
        _.each(array, function(...) {...});
    });
})(exports);

I’ve tried a couple of variations, but I am not sure of the best way around this error:

ReferenceError: _ is not defined
  • 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-13T14:21:06+00:00Added an answer on June 13, 2026 at 2:21 pm

    Yes, you should use in every module which needs that variable, for the case of you example.

    var _ = require("./underscore.js");
    

    But if you need to transfer one object instance between several modules you can use process object to make it global. But that is BAD practice.

    process._ = require("./underscore.js");
    

    Good way to pass object instances between the modules is to pass them as function arguments, but you need to change you bar.js to return a factory function, not an object itself.

    module.exports = function(_) {
       var e = {};
       var array = [...];
       e.publish = function(t, args) {
          _.each(array, function(...) {...});
       });
       return e;
    }
    

    In main.js:

    var _ = require("./underscore.js");
    var foo = require("./bar.js")(_);
    foo.publish(...);
    

    I hope you got the point.

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

Sidebar

Related Questions

I want to use NSString from one UIView in another UIView . There are
I want to use the values of JTextFields from one class in another class
I have one testing module that I want to use for android testing. I
I want to use one program as a shared library for an other program.
We are two students who want to use one-class svm for dectection of summary
I have two User Controls already created now I want to use one as
string one = find; combobox1.text = one; I want to use one i.e string
I have a few pages and want that they use one style. See in
I want to use many bars like this one in my app (i don't
I want to use the Hibernate3 maven plugin in one of my projects. But,

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.