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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T14:32:57+00:00 2026-06-06T14:32:57+00:00

I found that most tutorials use one big router. For example: https://github.com/thomasdavis/backboneboilerplate/blob/gh-pages/js/router.js Wouldn’t it

  • 0

I found that most tutorials use one big router.
For example: https://github.com/thomasdavis/backboneboilerplate/blob/gh-pages/js/router.js

Wouldn’t it be better to separate the routes (controllers) into separate files?

If yes how can I combine this with requirejs?

  • 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-06T14:33:02+00:00Added an answer on June 6, 2026 at 2:33 pm

    I think this is a question of preference. If you’re doing a ginormous application with gazillion routes, then dividing your routers up is sensible. For small applications having just one big router is just fine.

    If you decide to have multiple routers, make sure you don’t have conflicting routes, so there won’t be any unexpected behavior or errors.

    So with requireJS: I think the best way would be to define each router in it’s own file like this

    define([blaa, blaa], function(Blaa, Blaa) {
    
      var SubRouter1 = Backbone.Router.extend({
    
        // work your routing magic here, remember to make no conflicting routes
    
      });
    
      return SubRouter1;
    });
    

    When you have all your desired routers set up you can bundle them up in the app.js

    define([...,'subrouter1', 'subrouter2', ... , 'subrouterN', ...],
    function(..., SubRouter1, SubRouter2, ... , SubRouterN, ...) {
    
      // work your app magic here
    
      initialize: function() { // or wherever you start your application
        subrouter1 = new SubRouter1();
        subrouter2 = new SubRouter2();
        ...
        ...
        subrouterN = new SubRouterN();
        Backbone.history.start(); // remember to start the history 
      },
    
      // maybe work some more magic?
    });
    

    I’ve never done this myself, but I don’t see why it wouldn’t work if you keep the routes from conflicting. Hopefully this clears stuff for you.

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

Sidebar

Related Questions

I am learning ASP.NET MVC now a days and I have found that most
I found a lot of links on metaclasses, and most of them mention that
Did some search online, found simple 'tutorials' to use named pipes. However when I
Most of the examples and tutorials I have found for the Facebook SDK are
I found that using Smarty with PHP, sometimes extra time will need to be
I found that I have to perform a swap in python and I write
I found that this C++ code: vector<int> a; a.push_back(1); a.push_back(2); vector<int>::iterator it = a.begin();
I found that I can set a tooltip on a QLineEdit as such: equation
I found that some result of MBRContains(g1,g2) and other functions seems not right to
I found that each thread still has its own registers. Also has its own

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.