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

  • Home
  • SEARCH
  • 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 8173309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T22:06:06+00:00 2026-06-06T22:06:06+00:00

I am working on JavaScript architecture with requireJS module. Module definition is pretty simple:

  • 0

I am working on JavaScript architecture with requireJS module.
Module definition is pretty simple:

define([
    "dependency1.js",
    "dependency2.js"
], function (dep1, dep2) {

    dep1.dropdown = new Module("dropdown", function (sandbox) {
      // Private functions
      function getWhatever() {
        // do something
      }

      function getAnother() {
        // do another thing
      }

      // Public methods
      return {
         doSomething: function () {
            // do one more thing
            getAnother();
         }
      };
    });
});

Than I have a class called ‘Module’, inside which I am trying to apply try catch block to module methods like this:

var Module = function (id, creator) {
  var instance,
      sandbox = buildSandbox(),
      name,
      method;

  instance = creator(sandbox);

  for (name in instance) {
    // Looping though all methods inside module instance
    method = instance[name];

    if (typeof method === "function") {
        // Making every function execute within try catch block
        instance[name] = (function (name, method) {
           return function () {
             try { return method.apply(this, arguments); }
             catch (ex) { console.log("ERROR", name + "(): " + ex.message); }
           };
        })(name, method);
    }
  }
}

The problem is that as module instance holds only public methods, I cannot apply try catch blocks to private methods.

I am thinking if I make all instance methods public it’s not going to be secure anymore.

Is there’s a way to apply try catch block to private methods as well without reworking each module itself?

  • 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-06T22:06:07+00:00Added an answer on June 6, 2026 at 10:06 pm

    Unless you want to add code inside of the module to automatically add a try-catch, then no, there isn’t a way to do it.

    You basically have two options:

    1. Make all of the methods that you want to surround in a try–catch public and then use the code that you have.
    2. Don’t worry about it. If your public methods end up calling your private ones, then you’re getting decent coverage of errors anyway.

    I wouldn’t let “security” affect your decision. You’re writing JavaScript, people can always view source and see what’s going on, it will never be truly secure.

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

Sidebar

Related Questions

I am working in Javascript. I am trying to make a function on the
I am working with JavaScript and AJAX. One of the AJAX function adds the
I now have a working JavaScript autocomplete function, thanks to help from many of
I have a working JavaScript code below which dynamically creates JSON object using JSON.parse
I am working with javascript and here is what I am trying to do:
Hello all I am working on javascript jquery and svg.I want to ask a
youtube url is not working in javascript,why? where is the mistake in my code:
So I have been working with javascript for a website I am designing, shocker
Hello all I am working in javascript and html5.I want to ask that how
As I've starting working with Javascript, I learned the hard way that when you

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.