Tagged Questions
Module pattern helps to avoid namespace conflicts, and thus is widely use by various third-party scripts, like libraries or banners. Major drawbacks of using it are: much more difficult debugging and low IDE support. var Module = (function ( ) { ... })(); Original presentation at YUI ...
19
votes
3answers
2k views
What is the intention of Ninject modules?
I'm a complete newbie to nInject
I've been pulling apart someone else's code and found several instances of nInject modules - classes that derive from Ninject.Modules.Module, and have a load method ...
14
votes
1answer
2k views
Understanding how JS Module Pattern works
I'm trying to understand js module patterns in use with jQuery. I've edited this a couple of times and will try to end up with a good practice for my skill level (a couple of months fresh on jquery).
...
10
votes
1answer
2k views
Javascript: Module Pattern vs Constructor/Prototype pattern?
I have been reading a little bit about the Module pattern and i wonder if applicable for what i need to do or should i use the Constructor/protoType pattern.
Basically I am using unobstrusive ...
8
votes
2answers
101 views
Is it possible to access private variables in a module pattern dynamically?
Is there a way to have a public function from the module-pattern accessing private variables dynamically?
test1 shows what I mean with "access dynamically" but with public variables
var x = ...
8
votes
3answers
907 views
Using the Module Pattern for larger projects
I'm interested in using the Module Pattern to better organize my future projects. Unfortunately, there are only a few brief tutorials and proof-of-concept examples of the Module Pattern.
Using the ...
6
votes
2answers
364 views
How do I professionally structure my module-pattern Javascript projects?
I've read about the Revealing Module Pattern and I love it. But what about large projects where the 'master-object' has tens of sub-objects and maybe hundreds of functions. I wouldn't want to be the ...
5
votes
4answers
2k views
JavaScript Module Pattern - What about using “return this”?
After doing some reading about the Module Pattern, I've seen a few ways of returning the properties which you want to be public.
One of the most common ways is to declare your public properties and ...
3
votes
1answer
59 views
JavaScript module pattern: How do private methods access module's scope?
When implementing the module pattern, how do private functions access the private properties of the module? I haven't seen any examples where developers do this. Is there any reason not to?
var ...
3
votes
3answers
130 views
Issue maintaining scope with jQuery / module pattern
I'm just starting out using module patterns (thanks to Christian Heilmann's original tutorial) to organize my jQuery and I'm running into a weird issue. Consider the following javascript code:
var ...
3
votes
2answers
634 views
JavaScript module pattern / organization / sub-modules
I would like to know what's the
difference
(advantages/disadvantages) between
the following patterns.
How can I create sub modules based
on the module pattern?
My goal is to have my js ...
2
votes
3answers
26 views
Constructors in the Module Pattern
When using the module pattern in javascript how should constructors be defined, if at all. I would like my constructor to fit into a standard module pattern and not be global.
Why doesn't something ...
2
votes
1answer
91 views
Writing a javascript library
I want to write a JS library and handle it like this:
var c1 = Module.Class();
c1.init();
var c1 = Module.Class();
c2.init();
And of course, c1 and c2 can not share the same variables.
I think I ...
2
votes
1answer
388 views
Strict Violation using this keyword and revealing module pattern
Having trouble getting the following to pass jslint/jshint
/*jshint strict: true */
var myModule = (function() {
"use strict";
var privVar = true,
pubVar = false;
function ...
2
votes
2answers
166 views
How can i call a public method from within a private one when using the javascript Module Pattern?
I would like to call a public method from a private one but the property "this" refers to the window object.
Please note i am trying to apply the module pattern. You can find a working code example ...
2
votes
2answers
667 views
Can the Javascript Module Pattern be used for singletons and also for objects that are instantiated mutliple times?
I have one page with two types of forms. I have a single form of type A at the top, and then I have 1 or more forms of type B below it.
I use the Module pattern + jQuery to wire up all the events on ...
2
votes
2answers
311 views
When returning an object from a JavaScript constructor function (avoiding 'new') how do I implement public members?
I have begun writing my 'class' type JavaScript functions like the Module Pattern or Revealing Module patten. This avoids the use of 'new' and allows me to define which functions are public in a ...
1
vote
1answer
28 views
What is the cross-platform way to add a JavaScript module to the global scope?
I was having a look at the source code of store.js, in particular how it adds itself to the global scope:
if (typeof module != 'undefined') { module.exports = store }
else if (typeof define === ...
1
vote
1answer
43 views
Revealing module pattern with jQuery not working
I've been playing around with the revealing module patter. I originally started using the Singleton pattern but from reading around the module pattern seems to be the better option.
So i've tested ...
1
vote
0answers
79 views
Javascript Module Pattern Events and Listeners
I'm implementing the module pattern, and would like to know the best/preferred way to define and register event listeners/handlers. The following works, but maybe there is a better/simpler way...
var ...
1
vote
2answers
177 views
How can I transition my Module-Singleton JavaScript to supporting instances?
I've been writing an application and I have had a lot of success breaking different pieces of functionality into the so called "Module" pattern where you have a self-executing singleton with public ...
1
vote
1answer
315 views
How to make javascript module pattern work with ajax?
I am trying to convert some javascript/jquery code to be able to handle ajax tabs.
I have all my scripts load up when the pages loads up and I use jquery live and livequery plugin to help with the ...
1
vote
2answers
66 views
Limiting Access to “Functional Modules” in ASP.NET MVC
I am building a site in ASP.NET 4 and MVC2 that will have premium features, such as SMS notifications that will only be available to paid subscribers. I also have additional modules for things like ...
1
vote
1answer
91 views
How can I safely access other sibling functions and variables in a Javascript Module Pattern without accessing something in the containing scope?
I have a Javascript Object structured after the Module Pattern. I have several private function in it which are called from other sibling "private" functions. How can I access another ...
0
votes
2answers
72 views
Implementing module pattern in Javascript with dependency on jquery
What is the best way to implement module pattern, while the module code depends on third party libraries like jQuery for example?
var someModule = (function(){
//private attributes
var ...
0
votes
1answer
42 views
Any concrete benefits of extra level of indirection
Please consider the Javascript code excerpt at the bottom. Roughly it consists of two modules, one for handling messages. What is the benefit of the filtersUpdateSuccess method within the messages ...
0
votes
2answers
62 views
Avoid losing this reference and why it's happening
I have this fiddle which has an error --> http://jsfiddle.net/Osoascam/AkZZr/6/
(This is the version without the error) --> http://jsfiddle.net/Osoascam/AkZZr/7/
In it, there is a Module (like the ...
0
votes
2answers
67 views
javascript design pattern: how to create sub-module and access parent module private vars and functions
I have the following:
mod.a = (function() {
var myPrivateVar = 'a';
function myPrivateFct() {
//do something I will need in my sub-module (mod.a.b)
}
return {
//some ...
0
votes
0answers
54 views
Module Pattern code loaded at run-time as normal anonymous functions
I'm using Javascript Module Pattern, for the many benefits it gives, and I'm loading a JS file at run-time using:
return $.ajax({
url: "../../Scripts/myFile.js",
dataType: "script",
...
0
votes
2answers
132 views
How to make a submodule via module pattern
I was reading about JavaScript Module pattern. My Question is how do I make submodules with it, i.e how can I inherit from it, say I have this class
var MODULE = (function () {
my = ...
0
votes
1answer
112 views
Returning multiple calls to methods from another method in JavaScript revealing module pattern
I am experimenting with the revealing module pattern for a current project.
I have init methods at the top of several methods where i set up variables and call methods necessarry for the modules to ...
0
votes
1answer
256 views
Javascript Module Pattern and Jquery live?
I am trying to use the JavaScript Module Pattern and I run into a problem that I am unsure how to get around.
So I have 2 script files as I want to separate my code and make it easier to read.
// ...
0
votes
3answers
174 views
Accessing jQuery objects in the module pattern
Really getting in to javascript and looking around at some patterns. One I have come accross is the module pattern. Its seems like a nice way to think of chucks of functionality so I went ahead and ...
0
votes
3answers
165 views
What happens when you declare two variables with the same name and scope in JavaScript?
What happens if I declare two variables with the same name and scope?
var foo = (function() {
return {
alertMe: function() {
alert("foo1");
}
}
})();
var foo = ...
0
votes
2answers
233 views
Javascript Assistance
The issue I am having is when the function is called multiple times for different elements. I believe I need to localize all of the variables such that this function can be used against multiple ...