0
votes
0answers
18 views

NetBeans & Maven: add JavaScript API from dependency

I am currently working on a Maven web application with NetBeans 7.3. My HTML files need some .js which I would like to include as a Maven dependency. The dependency is packaged as a WAR. However, ...
0
votes
0answers
26 views

WIKI: How to use Lime (how to use closure-compiler with 3rd party (closure) libraries)

The following post inspired me to have a look at limeJS, as a side project I'm working on and off an a Yatzee game (mostly off) and thought that might be a nice library to use. As a beginner in ...
0
votes
1answer
23 views

Is it possible to initialize an object with the literal notation if there are dependencies among its members?

Suppose I have an object like this a = {b = function() { return 1 }, c: 2, f: 3} a.z = a.b() Is there a way to write it in a single assignment of object literal notation? Similar to: a = {b: ...
0
votes
0answers
34 views

Doxygen - Defining CSS et JavaScript dependencies of a PHP view in doxygen blocks

I have several views, one per PHP file. I would like in the Doxygen documentation of each file to indicate what are the dependencies of the view. Is there some kind of @dependency or @dependencies tag ...
0
votes
0answers
146 views

Javascript library to draw dependency diagram

I would like to be able to generate a dependency diagram showing which software component is dependent on which using Javascript libraries. Requirements: automatic layout from top, down arrows ...
1
vote
0answers
59 views

jQuery (UI) is a dependency I don't want to be locked into?

First of all, let me make myself clear. I love jquery (UI). I've been using it in a major project for a couple of years. I plan to keep on using it for a while! Now with all these new web frameworks ...
1
vote
1answer
62 views

Javascript Require.js dependencies

if I have 2 .js files (A.js, B.js) and each of them has their own dependencies. A depends on: C.js, D.js, E.js B depends on: C.js, F.js, G.js A and B have C as common dependency. If both A and B ...
1
vote
2answers
32 views

“import” dependencies solution for assetic

I am looking for some solution for using @import '*.js' like in less css for Symfony 2 project. Is there any plugin for that? It would be nice to in-file controlling instead of hard writing ...
0
votes
1answer
121 views

CryptoJS with Bower, how to manage this dependency?

I need to manage CryptoJS with Bower. This project is hosted on code.google.com. Can be downloaded as zip file or through the SVN. Can Bower download an uncompress the zip file or download all ...
1
vote
1answer
253 views

Variable Dependency with knockoutJS

I'm building an application with KnockoutJS with a component that essentially acts as a sequential spreadsheet. On different lines users may define variables or use them to represent a value. So for ...
0
votes
2answers
75 views

Writing a jQuery library with dependencies?

I'm writing a jQuery library that has a couple jQuery library dependencies, one being jQuery Cookie. What's the best way to include this so that the users of my library use it? I can think of at ...
3
votes
1answer
98 views

Multiple package.json files in one package

I have a site running on php that uses Node for a few development tasks. Currently, our team relies on puppet to install the node modules that we use for these development tasks, however, I was ...
0
votes
1answer
45 views

Javascript Function's Output is Rails Function's Input - Dependency

I want to find content for a related tag in my table. But tags are returned by javascript function, therefore when I try to evaluate Find(tag_id) since rails first evaluates its code prior to the ...
2
votes
1answer
156 views

dependent drop down for Pricing Minimum to maximum dropdown

I've been stalking here for longer than I can remember, this is my first post so I hope i get this right. I want to be able to have a Minimum and Maximum Price Dropdowns, and when someone selects a ...
3
votes
2answers
300 views

How to represent form options that depend on other forms

I have a form that is suposed to help to user to choose a specific thing at the end, but as the user fills the first options, the others below change. Something like this: Type: { t1:{ ...
7
votes
2answers
492 views

How can I split my javascript code into separate files?

I'm reading the Javascript Guide from Mozilla And when they contrasted JS to Java , It got me thinking, Java code is easily split up with each class in his own file. after futher search , I understand ...
1
vote
3answers
492 views

Define a Gradle task with inputs from project dependencies?

Background: I have a multi-project Gradle build, and I've defined a Gradle task which runs JavaScript unit tests in an Exec task. The inputs to this task are the JavaScript files in the project, so ...
0
votes
1answer
238 views

prevent synchronously loading of a store

I use Ext 4.1.1 I keep getting: [Ext.Loader] Synchronously loading 'Eml.store.eml.EventSummary'; consider adding Ext.require('Eml.store.eml.EventSummary') above Ext.onReady I added the store ...
1
vote
1answer
61 views

What Are My Options For Unit-Testing This Method?

My Ray module: define(['Util', 'Vector3f'], function (Util, Vector3f) { var Ray = {} Ray.o = null; Ray.d = null; Ray.depth = 0; Ray.mint = 0.03; Ray.maxt = null; return Ray; }); My ...
0
votes
1answer
253 views

Dojo AMD loader executing define callbacks with empty / missing dependencies

I'm new to Dojo (1.7) and totally willing to accept I'm being an idiot (I just hope not). I am more comfortable using require.js for AMD but I'm using a 3rd-party (ESRI) mapping API that forces Dojo ...
0
votes
2answers
161 views

Modularization & reuse of code written using Ext JS

I need clarity into being able to modularize my JavaScript code that leverages Ext JS. My objective is to create custom classes that extend Ext JS widgets, distribute code among several JavaScript ...
3
votes
1answer
483 views

Confused about RequireJS dependency

I am trying to wrap my head around dependencies in requirejs. If I already declared dependencies for a file using shim, do I need to re-declare it when I define the module in that file? If I use ...
-1
votes
3answers
3k views

How to fix the jQuery 1.8 “Syntax error, unrecognized expression” error? [closed]

<script type="text/javascript"> $(function(){ $(".user_ava").click(function() { $("div:.userMenu",this ).animate({ height: ["toggle", "swing"], opacity: ...
0
votes
1answer
109 views

How to manage data dependencies between raw objects?

Consider the following situation: items = [ { id: 1 attributes: [ { key: a, value: 2 } { key: b, value: 3 } ], requirements: null } { id: 2 attributes: [ ...
1
vote
1answer
187 views

Sub-template JS asset loading order in Play! framework

How can I define the load order of javascript assets in the Play framework when I load scripts in sub templates? In my index.scala.html I pull in jQuery: <script ...
10
votes
3answers
2k views

How do I change the order in which Meteor loads Javascript files?

When you make a project with the Meteor framework, it packages all the files together, but there doesn't seem to be a way to explicitly say "I want this file to be loaded before that one". Let's say, ...
4
votes
2answers
182 views

Node.js / npm - anyway to tell if a package is pure JS or not?

I've noticed that in trying to get seemingly simple node packages to install with npm (e.g. nerve, a "micro-framework") I often run into some form of dependency pain. After some digging, I tracked ...
3
votes
2answers
183 views

Best practices for resolving statically javascript dependencies

It's quite sad I have to ask this question in April 2012, but I know quite few approaches to the problem. So, I want a tool for statically compiling javascript files, resolving dependencies. To be ...
3
votes
1answer
400 views

Subscribing to “beforeChange” on dependentObservable creates unwanted dependencies

When using subscribe with "beforeChange" on a dependentObservable it will create dependencies to any observable accesed within the callback as the event occurs during dependency detection. For ...
4
votes
1answer
189 views

RequireJS - Managing Modules Centrally

Maybe I missed this in the documentation somewhere but here goes. I've got a core controller that takes care of managing modules. I have about 20 modules so far and would like to be able to easily ...
0
votes
1answer
266 views

show and hide multible div's depend on 3 select boxes values

i have 3 selectlist with many options i don't know any JS code here is My HTML <fieldset id="basic_data"> <legend>Basic Data :</legend> <h3 ...
4
votes
4answers
84 views

Include a javascript library for calculation

I want to do something very simple in javascript. I have a main.js file which needs to call a calculation method in math.js. If I include in index.html these two files with script tag, first math.js ...
5
votes
1answer
3k views

how to implement checkbox dependencies in knockoutjs

I have a group of checkboxes checkbox A checkbox B checkbox C Generated with the foreach data binding: <input type="checkbox" data-bind="value: id, checked: $root.chkboxSelected" /> Which ...
1
vote
4answers
233 views

How to manage dependencies in JavaScript?

I have scripts that needs to wait for certain conditions to be met before they run - for example wait for another script to be loaded, or wait for a data object to be created. How can I manage such ...
1
vote
1answer
383 views

Multiple <select /> chaining with KnockoutJS with dependencies stored in a database

I want to convert a solution of <select /> box chaining I've already built to use KnockoutJS. Here's how it works now: I have a database that is full of products that have attributes and those ...
3
votes
1answer
205 views

Use an alternate dependency list for Node.JS + NPM

Is it possible to have two package.json files for a single NodeJS project? In a project I'm working on, there is an optional and experimental feature which requires some node packages of its own. For ...
1
vote
2answers
152 views

Organizing library dependencies in JavaScript best practice

What are peoples thoughts on the best way to organize dependencies in javascript? I know the basics but have some more specific questions. From reading Douglas Crockford and other posts around here, I ...
1
vote
0answers
260 views

javascript package management, dependency management and modularization best practice? [closed]

I am trying to understand the difference between ender and NPM I am looking for a solution to modularize my js files out of a single js file and into separate files, and then be able to manage ...
1
vote
3answers
201 views

What's the quickest way to generate script tags for the dependencies in a google-closure project?

I'm learning JavaScript and Google Closure, and obviously (once you start using templates and various parts of the library) it becomes difficult to manage the dependencies by hand. I know that the ...
14
votes
4answers
981 views

Best practice for documenting javascript library dependencies

So you're creating a bunch of code in an external .js file that requires jQuery and a few of its plugins, or MooTools, or perhaps some more esoteric libraries. Obviously the actual "include" is done ...
14
votes
1answer
1k views

Managing common javascript dependencies in Symfony 2

I would like to know what is the standard best practice for dealing with common JavaScript (and even CSS) dependencies across several Symfony 2 bundles. According to the Book on the official Symfony ...
2
votes
2answers
613 views

Use WMI to find dependencies of a service and then differentiate dependent Services from dependent Drivers

There is a code example on MSDN which uses WMI to enumerate all of the dependencies for a particular service: http://msdn.microsoft.com/en-us/library/aa393673(v=vs.85).aspx This is great...but i've ...
1
vote
1answer
177 views

Easy way to load custom javascript files on a webpage?

I am working on a project where the Javascript is getting out of hand, so I've done my best to put each object into a different file (within reason of course... I sometimes group related objects and ...
1
vote
1answer
92 views

Patterns or techniques for ensuring script availability?

As a project I have been working on has grown, so has the frequency of situations where all scripts on a page are not available when other code tries to access them. Though this happens most often ...
0
votes
1answer
206 views

rhino-1.6R7.jar and jargs-1.0.jar in yuicompressor-2.4.2.zip

I have those two in the lib folder inside yuicompressor-2.4.2.zip. I ran the compressor completely fine without them. What are they for? Am I missing something?
3
votes
3answers
2k views

Recommended cache control method?

I'm looking to force refreshes of JS/CSS dependencies. Will <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> work for that, or will that only force a refresh of the content within the page ...
46
votes
6answers
17k views

Using npm to install or update required packages just like bundler for rubygems

I love Bundler, it's great at dependency management. I love npm, installing node packages is easy! I have a nodejs app and would love to be able to specify my apps dependencies and easily install / ...
1
vote
3answers
99 views

Help me optimise this 2-line Javascript, if possible!

I have a 2-liner here which... does the trick, but its just a bit lame looking really: var n = 'configOb_'+Math.floor(Math.random()*100); while( document[n] !== undefined ){ n = ...
3
votes
1answer
693 views

Your thoughts on a proposal to manage JavaScript dependencies

I've recently done a great deal of JavaScript programming in the context of developing a Rich Internet Application. My view at the start of development is pretty much what it is now; JS RIA works but ...
20
votes
5answers
7k views

JavaScript dependency management

I am currently maintaining a large number of JS files and the dependency issue is growing over my head. Right now I have each function in a separate file and I manually maintain a database to work out ...

1 2