Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I do node.js, which I love, and I really like the whole way I can do something like

var module = require('../path/module')
module.functionname()

So I thought I'd like to do that in client side Javascript to organize things slightly. So each of my files now has a namespace. So say login.js has a namespace login.

My question is, what do I include/do in other files so that I can call login.functionname()?

But I'm sort of thinking is this actually that efficient? If I do say include each file surely that'll be a terrible way to do it?

Thanks, Niall :)

share|improve this question
Can't see a reason for a downvote o0 – sdepold Jan 28 at 7:01

1 Answer

What you are trying to achieve can be done with AMDs (asynchronous module definitions). Check out RequireJS for that: http://requirejs.org/

With Require.js you can basically define a set of dependencies, let them get loaded asynchronously and execute code once all stuff was loaded nicely:

require(['dependency1.js', 'dependency2.js'], function(dep1, dep2) {
  console.log(dep1.functionname())
})

The dependency will then declare it's functionalities with require's define method:

define(['a/possible/dependency.js'], function() {
   return {
     functionname: function() { return 1 }
   }
})
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.