Tagged Questions
1
vote
1answer
30 views
JavaScript dependency management for WordPress?
I am going to write a small charting library (with chart types such as bar, pie, line etc.) to be used in a WordPress context.
The library might depend on external libs such as D3.js, underscore.js ...
3
votes
1answer
70 views
javascripts function dependency graph?
Is there a program/tool that can generate function dependency graph for javascripts? Basically, the input should be a folder of javascript files, then the output is a nice graph that show all the ...
0
votes
0answers
82 views
require.js define dependency only if existant
How can I define a dependency only if it exists? I want to use the object 'myObject' only if it already exists/has been created.
define(['dependencyOne', 'dependencyTwo', 'myObject'], ...
3
votes
1answer
88 views
What are node.js and the AMD API used for? [closed]
I have some experience with JavaScript but none whatsoever with JavaScript project management and tooling. I'm looking at using node and AMD but am not exactly sure what they are used for and am ...
0
votes
1answer
87 views
How to give a JavaScript module conditional AMD support?
I'm building a module that I want to make available both for people that use AMD and for ones that don't. For example, I want to make it work with RequireJS:
require(['Module'], function (Module) {
...
3
votes
1answer
403 views
requirejs vs google javascript closure dependency management
I've been using the google javascript closure library for a variety of components, and I've also used its dependency management. I'm curious as to how that compares to using requirejs for dependency ...
0
votes
2answers
79 views
How to call a function only when all scripts are loaded?
I am sharing a script tag with client to deploy my web application on client's website.
Basically by this way, he can embed my app wherever he want on his site.
The script which I give him just ...
2
votes
1answer
626 views
Knockout JS Unit testing and ViewModel coupling and dependencies
I'm starting to write unit tests for my js code and I'm newbie in this. We use knockout.js and need test our viewmodels for the project.
Here is the sample:
Tasks.js file
var yc = yc || {};
...
0
votes
1answer
54 views
3rd-party JavaScript application dependency management
I'm contributing to a 3rd-party JavaScript application, let's call it X. A website owner may place X in their own site, let's call it Y, using a script tag, and X might render some content, respond to ...
0
votes
1answer
125 views
Convert large existing base2 javascript application codebase to use RequireJS
I have been working on a javascript application for a long time now, it started out quite small and I was the only one working on it. However, it's getting quite large. I would like to bring in ...
29
votes
11answers
2k views
How to manage client-side JavaScript dependencies?
Although there are great solutions to manage dependencies on the server side, I could not find any that satisfies all my needs to have a coherent client side javascript dependency management workflow. ...
0
votes
2answers
259 views
Is there a dependency management tool/library for JavaScript?
Is there a dependency management tool/library for JavaScript?
PHP has Composer and Packagist.
Ruby on Rails has Bundler.
What is available for JavaScript?
0
votes
0answers
241 views
Loading partial views (sub-pages) dynamically via ajax with IFFE
I am developing a framework on top of ASP.NET MVC that would allow to easely build single page dynamically populated web sites.
Such web sites rely heavily on a ajax-loaded sub-pages (partial views ...
2
votes
0answers
1k views
Circular Dependencies in modules using requireJs
Reading the requireJs documentation,
in order to fix the Circular Dependencies, is suggested to use exports to create an empty object for the module that is available immediately for reference by ...
2
votes
1answer
452 views
What's the benefit of using extend.js?
Just visited extend.js on github, and was wondering if there's an added value to using the library over native JavaScript. let me demonstrate:
extend.js would declare a namespace like so:
...
0
votes
3answers
211 views
How do you manage dependencies in Javascript libraries
I am making a jQuery widget that will distributed to third parties. It is pretty simple, it will make an ajax call and put some content on a div on their page.
Is there an easy way a can give them ...
0
votes
1answer
135 views
YUI3 Dependency management
I am trying to develop a web application leveraging the YUI 3 app framework and am not able to figure out how the dependancy management actually works.
I wish to define a module that I want to reuse ...
3
votes
1answer
284 views
Javascript templating library that infers used variables and dependencies
Is there a Javascript templating library that automatically infers the variables used in the template and the possible dependencies among them? If I for example have a template that looks like this ...
2
votes
1answer
276 views
How to manage javascript Dependency for Ajax Extender controls
Does the Ajax Extender control base provide dependency management? I am creating a set of controls that uses a few base scripts used by the behaviors and from here Creating a Extender Control it sort ...
6
votes
1answer
480 views
Node.js - module caching, partially done objects, and cyclical dependencies?
In the node.js documentation regarding module caching, the following statement is made:
Multiple calls to require('foo') may not cause the module code to be executed multiple times. This is an ...
0
votes
1answer
1k views
Recommended usage for async javascript loaders
Just started looking at asynchronous javascript loading libs such as lab.js and script.js. My question is about best practises for using this type of async loading pattern.
I've thought of a couple ...
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 ...
0
votes
2answers
265 views
Javascript Buildmanagement - “Must have” tools?
Are there any must have tools for Java Script (RIA) development like maven, jUnit, Emma, link4j etc. for Javascript? What is the best way to set up a continous integration system for a bigger ...
4
votes
5answers
819 views
Does something like Sprocket exist for Java
Sprocket is a Ruby library for managing JavaScript dependencies. It makes it possible to declare dependencies in specially formatted comments in the JavaScript files, and have all the required files ...
