RequireJS is a JavaScript file and module loader. It is optimized for in-browser use, but it can be used in other JavaScript environments, like Rhino and Node.

learn more… | top users | synonyms

0
votes
1answer
15 views

Controller and services are not loading in angularjs

I have integrated requirejs with my angular app. But while loading app, it gives me an error 'Argument 'appCtrl' is not a function, got undefined' HEre is my controller code : define(['Angular'], ...
0
votes
0answers
21 views

What's alternative to minify javascript and combine in one file in Play Framework 2.1 + AngularJs?

I'm using Play 2.1.1 in Java which lately they have changed to use RequireJs instead of Google Closure. However, I'm building just a small application and I don't want to use RequireJs to optimise the ...
0
votes
1answer
15 views

require.config must declare in every page?

//main.js require.config({ baseUrl: '../Scripts/lib/', paths: { 'jquery': 'jquery-2.0.0', } }); define(['jquery', '../test1'], function ($, object) { ...
0
votes
1answer
43 views

How to call module factory from another module in Angular.js?

I have problems with call a factory in one module from another module. I am using angular.js + require.js. Here is my code Module 1: define(['angular', 'app/admin/app.admin', ...
1
vote
2answers
18 views

How can I tell Require.js to use the same paths and shims for multiple mains?

We have a suite of similar apps, all being built from the same codebase. There are currently 5 different main.js files, and they all repeat the same requirejs.config({ paths: { foo foo foo }, ...
2
votes
0answers
14 views

Require loads a module even though it's included in the build

I'm working on a fairly complex Require project; at the core of this project is a third-party video player code base that we're building an app around. I'm currently working out our production build ...
0
votes
0answers
25 views

fullcalendar not loading grid

Im using FullCalendar with Backbone.JS and Require.js my view loads the calendar header but thats it. Only if I press forward or back month or today button does the grid appear. I get error message ...
1
vote
1answer
38 views

Using require.js module in node AND browser

I would like to create a (require.js style) AMD module that can be used in the browser and in node. What is the best way to do this? I keep seeing references to r.js, but still not 100% sure on how ...
1
vote
1answer
14 views

RequireJS does not accept URL`s in the config`s paths declaration

I want to inject google this way that I can inject my own google mock in the runner.js for unit testing where I do not want http calls. paths: { lib: 'lib', async: ...
0
votes
1answer
18 views

How can I pass a dependency to a constructor function which is needed by its prototype/base class

I have a chicken or egg who was first there... problem. The AlarmOverlay derives from OverlayView. Before the AlarmOverlay is created by calling the constructor function the 'google' object is ...
2
votes
1answer
32 views

Phonegap and the universe of frameworks?

my concern is to find a well fitting framework for developing a cross mobile platform app via phonegap. I am using JQMobile for the User interface. I want to build my Application well structured and ...
1
vote
2answers
23 views

proper way of using require.js

//some.html <script data-main="./Scripts/Main.js" src="./Scripts/lib/require.js" ></script> <script src="./Scripts/Multiply.js"> //Multiply.js define('Main'.['jquery'], ...
1
vote
1answer
34 views

In IE7, module not defined in require callback function

I've got a pretty simple require setup in my main.js file. This block of code with in Firefox, Chrome, and all IE 8 - 10, but in IE7, the Sitewide object is not defined on some page loads. It's very ...
0
votes
0answers
14 views

TypeError when trying to require coffeescript dependency in couchdb desing document in validation function

I'm trying to use couchdb to create a simple webapp, I'm trying to use coffeescript and require statements at the same time in desing documents. I use erica to deploy the app. For now I just want a ...
2
votes
1answer
56 views

Angular.js and Require.Js

I am studying Angular.js and Require.js at the moment. I encountered an issue here while I am using this two together. For example in my html I have something very simple like {{3+3}}. I found out ...
0
votes
5answers
60 views

All js functions need in .js file if I use the RequireJs?

I want to use RequireJs in my project, but I found that I can't write the following code <html> <head> </head> <body> <input type="button" /> ...
1
vote
3answers
31 views

requirejs fundamentals: underscore + backbone + jquery

I want to make a skeleton app using require.js, backbone.js and underscore.js. I have created a skeleton, according to www tutorials, but I've got a bug somewhere. This is init.js code: ...
0
votes
0answers
15 views

Play framework JS concatenation

I'm using require.js in play framework which is great. After tweaking Build.scala file I'm getting minified js files on production but I'm not able to find any information about concatenation all the ...
0
votes
1answer
21 views

not able to get requirejs to work with mvc4

i am trying to start with require js... and below is the most basic example i am trying to work with.... I have defiend "jquery" & "jqueryui" using require js and provided the dependency of ...
0
votes
1answer
21 views

Require.js JST files

This is my sample JST file (function() { var _ref; if ((_ref = window.JST) == null) { window.JST = {}; } window.JST['test'] = function(context) { return (function() { var $o; $o ...
0
votes
2answers
37 views

Why is `Mustache` undefined? (Using RequireJS)

I can see that the mustache.js file has been loaded, (code 200 in Firebug Net tab) so why do I get an error saying "ReferenceError: Mustache is not defined"? I've looked at several related SO posts ...
0
votes
0answers
35 views

jQuery UI commands undefined unless I execute jQuery.noConflict()

I've inherited some code that makes extensive use of require.js, which I'm trying to learn. A page I'm having trouble with has a custom server control that bundles several scripts it's dependent upon ...
0
votes
1answer
20 views

Picking jQuery 1.9 or 2.0 using JavaScript and Require.JS when optimizing code

I was facing issues after upgrading to jQuery 2.0 My application stopped working on IE8 and less. The application currently use Require.JS to modularise my code. I found a very nice solution here for ...
0
votes
0answers
11 views

configuring uploadify into requirejs

I am trying to wrap jquery.uploadify.js inside a requirejs package to be used in Jam. I tried taking the source of jquery.uploadify.js and wrapping it within (function($) { })(jQuery); So then in ...
0
votes
1answer
36 views

prototype functions in a javascript file loaded by requirejs

When I put this code in a script.js file and include it runs fine, but when I implement this code in a javascript file loaded by requirejs the createMapOnOverlay function is not found which is called ...
0
votes
0answers
37 views

non-concatenated dat.gui source with require.js. Customising, or templating dat.gui

Please excuse the SEO friendly title, but I would like to make the problem I am currently solving as accessible as possible. For those of you who are looking to customise the look and feel of dat.gui, ...
0
votes
1answer
80 views

Uncaught Error: No module: MyApp

I load AngularJs and jQuery using RequireJs in nodeJs framework. That is main.js require.config({ paths: { angular: 'vendor/angular.min', bootstrap: ...
0
votes
1answer
36 views

Posting login form credentails to server and receving response using backbone in pure html page

I am relatively new to backbone. I am simply trying to authenticate user against server. Form <form action="/login" id="login-form"> <input type="text" id="username" name="username" ...
1
vote
2answers
51 views

Loading 'theme' and 'exporting' module with Highcharts using Requirejs

I have tried several different configurations of my paths and shim attributes in my requirejs.config function but none seem to load my gray.js theme and the exporting.js module. Currently I have: ...
0
votes
1answer
23 views

Backbone & Require: model property set in require block not “sticking” out of the block

I've got a Backbone model that has some of it's dependencies loaded via require JS. I'm handling it this way to get around the circular dependency issue with Require.js. (We have multiple files ...
0
votes
0answers
21 views

RequireJS to split up very large modules

This is an organization question. I have a very large module that I want to break up into separate sections for example into [ init , UI setup , canvas functions , etc... ] Right now they are all part ...
1
vote
1answer
27 views

prefix for modules getting loaded using requirejs

My application has different modules which ask for a files in following way : var urlRepository = require('modules/common/urlrepository/urlrepository'); also some modules are required using ...
5
votes
1answer
50 views

How to load KnockoutJS custom functions with RequireJS?

I have a View Model that uses a custom observableArray function for sorting. When I try to run this it says: "...has no methods 'sortByProperty'". How should I load the handlers.js file to make this ...
0
votes
0answers
19 views

Using a string as a parameter in requirejs text plugin

I wanted to use a string within require and load a handlebar template file. But i always get "Invalid require call : notloaded",'Module name "'+i+'" has not been loaded yet for context:" ...
0
votes
1answer
10 views

Handling global varibales when using AMD Requirejs + Backbonejs

As in the application I need to have some configured variables which are to be global and I am using them across modules. My config file may look like. config.js: var config = { baseServiceUrl: ...
0
votes
1answer
14 views

requirejs callback parameter is undefined

I'm just starting with require.js. Here's the simple code that I have in my main.js require.config({ baseUrl: '/js', }); require(['lib/jquery-min'], function(jq){ ...
0
votes
0answers
35 views

RequireJS not loading Mustache window object

I'm implementing the search functionality described here for my Jekyll site but it needs six separate JavaScript files to work, so I'd like to use RequireJS to load all of these files as dependencies. ...
1
vote
1answer
34 views

Parallel javascript minification under require.js, using node?

I'm using node.js to minify javascript files packaged under a require.js dependency scheme, with r.js actually doing the minification. (See: http://requirejs.org/docs/optimization.html) It seems ...
4
votes
1answer
46 views

Testing requireJS methods async with Jasmine

I am trying to test a function that requires a module using jasmine and requirejs. Here is a dummy code: define("testModule", function() { return 123; }); var test = function() { ...
1
vote
2answers
35 views

How to define a “type” in AMD/RequireJS style

I'm working on a Durandal SPA, and I've setup some views and viewmodels. I'm unclear how I should be creating "model" objects on the client side. For instance, let's say that I want to define and ...
2
votes
1answer
35 views

requirejs text plugin downloads all templates which are not required

I'm using RequireJS along with text plugin to load the Handlebar templates dynamically in Backbone Layout Manager. But on page load all the templates get downloaded instead of the specified one. In ...
1
vote
1answer
27 views

why only “main” work in require.js? define(“main”, ['jquery'], function ()

I had define the require.js for testing purpose define("test", ['jquery'], function () { debugger; $('#button').bind('click', function () { alert("halo"); }); }); If I use word ...
0
votes
1answer
51 views

require.js loading bootstrap undefined

MY main.js look as below requirejs.config({ //By default load any module IDs from ../js baseUrl: '../js', paths : { 'jquery': 'libs/jquery', 'underscore': 'libs/underscore', 'backbone': ...
0
votes
1answer
27 views

some files not cached in requirejs - is that an issue?

Using RequireJS I am developing my application. I noticed from my browser developer tools (attached) some of files (router.js, views.js, model.js, etc.) say cached "no". What does that mean? What is ...
0
votes
1answer
35 views

is it good to use amd version of backbone, jquery, underscore, etc?

I am starting my project structure from scratch. I am using require.js, backbone, underscore, bootstrap, etc. I was thinking to use shim config to load non AMD compatible of backbone, underscore,etc. ...
0
votes
0answers
13 views

is it possible to set up amdefine in tests so that I don't have to define it in all my module files?

I have a set of objects that are used browser side but tested server side with mocha. I'm using require.js for AMD loading. The Require.js site suggests using amdefine on server-side to get the ...
2
votes
1answer
46 views

AngularJs and global namespace

I'm working on a project that requires us to embed our AngularJS application to other websites. The application currently uses requireJs to load AngularJS. However, the current AngularJS attach the ...
1
vote
0answers
28 views

getting SCRIPT28: Out of stack space require-jquery.js, line 3792 character 3

i am creating a single page app proof of concept using requirejs (with jquery merged in) I am randomly getting Stack overflows in the app on different browsers. The error is SCRIPT28: Out of stack ...
0
votes
1answer
41 views

After integrating requirejs in backbone app, (view) not working

I am developing my backbone application using require.js. all were fine. up to I integrate the routers. after I integrate my router I'm getting errors saying: TypeError: appView is undefined [Break ...
0
votes
1answer
39 views

Adding addthis HTML to the dom after loading addthis script

My goal is to have anchor tags where href="#share" and turn them into twitter bootstrap popovers with the add this buttons in it. I have this working. Something that complicates this is that I add the ...

1 2 3 4 5 36