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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T09:19:04+00:00 2026-06-09T09:19:04+00:00

I am developing a single page backbone app using requirejs, and today when I

  • 0

I am developing a single page backbone app using requirejs, and today when I deployed to our beta server, I discovered that the initial page load was around 20 seconds while it fetched all the scripts.

I assumed this was because I was using the dependency array when defining modules like so:

define([
    'ui',
    'models/user',
    'collections/campaigns',
    'collections/groups',
    'collections/keywords',
    'collections/inboxes',
    'collections/templates',
    'collections/contacts',
    'router'
], function (Ui, UserDetails, Campaigns, Groups, Keywords, Inboxes, Templates, Contacts, Router) {

    return {
        start: function () {
            // ...
            // initialize and start app
            // ...
        }
    }
});

Which I believed meant that when the main application module was loaded, every other script would be loaded, due to the fact that every single module was using this method.

I then changed the method of fetching modules to get them as I needed them by calling require('...') directly when I need them like this:

define(function (require) {
    return Backbone.Router(function () {
        // ...
        // route initializtion etc
        // ...

        inbox: function (routeVar) {
            var InboxView = require('InboxView');
            this.inboxView = new InboxView();
            // render view etc
        }
    });
});

However to my surprise, upon running the app again and checking the network tab of chromes developer console – I saw that as before the application is fetching all of my modules, and I am getting the same page load time.

Am I completely missing the point here? As I was under the impression that the scripts would be fetched upon each call of require. Is that not right?

  • 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-09T09:19:07+00:00Added an answer on June 9, 2026 at 9:19 am

    In order to asynchronously load AMD modules you must call require and provide a function callback that will be called when the requested module has been loaded:

    require(['InboxView'], function(InboxView) {
      // Do something with InboxView here...
    });
    

    The sample code you provided called require('InboxView') in a synchronous style. Because you are using the “sugar” syntax, RequireJS will inspect your code, find any synchronous calls to require() and add those dependencies to the top-level dependency list of the module, in effect giving you this:

    define(['require', 'InboxView'], function (require) {
      return Backbone.Router(function () {
        // ...
        // route initializtion etc
        // ...
    
        inbox: function (routeVar) {
            var InboxView = require('InboxView');
            this.inboxView = new InboxView();
            // render view etc
        }
      });
    });
    

    …hence why you saw all modules loaded immediately.

    Add the async callback to require and you should be fine. Also, if you think about it, how would your code work if RequireJS waited to load the module for InboxView until your route fired without the require call blocking until the load was complete? 🙂

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

Sidebar

Related Questions

I'm developing a single-page view for a resource that contains multiple nested resources. Using
I'm developing a website. I'm using a single-page web-app style, so all of the
I have been building a single page app using requireJS and so far loving
I have a problem when developing a single page web app. When jQuery send
I'm developing a single page app and I want to know how to make
I am developing a single web application that will dynamically change its content depending
We are creating many XML files for a single app in developing android applications;
I am developing an application. I am creating the Universal Application using the Single
Hi LaTeX enthusiasts and TeX programmers! I'm currently developing a single-page document class for
I'm developing an app using SL Prism and MEF using MVVM. I have my

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.