Top "Amd" questions

The Asynchronous Module Definition (AMD) API specifies a mechanism for defining modules such that the module and its dependencies can be asynchronously loaded.

RequireJS - pass parameters into module for initialization

Possible Duplicate: How to load bootstrapped models in Backbone.js while using AMD (require.js) I am currently creating a …

javascript module requirejs amd
Dependency injection in TypeScript

I'm looking into the possibilities to do TDD with TypeScript. If I write my tests in TypeScript, is it possible …

tdd requirejs typescript amd
Difference between require() and define() in RequireJS?

In RequireJS, what is the basic difference between using require() Vs define(); require(['a'], function(a) { // some code }); // A.js …

javascript requirejs amd
Download OpenCL AMD APP SDK 3.0 for windows and linux

I want to download standalone version of OpenCL AMD APP SDK 3.0 for Windows and Linux.

opencl amd pyopencl amd-app
Import TypeScript module using only ambient definition for use in amd

I have a module that depends on Backbone. I have a backbone.d.ts definition but TypeScript doesn't seem to …

javascript requirejs typescript amd
Expire cache on require.js data-main

I'm using require.js and r.js to package my AMD modules. I'm using jquery & requirejs via the following …

javascript caching requirejs browser-cache amd
How to use AMD GPU for fastai/pytorch?

I'm using a laptop which has Intel Corporation HD Graphics 5500 (rev 09), and AMD Radeon r5 m255 graphics card. Does anyone …

pytorch gpu amd fast-ai
RequireJS: Module name __ has not been loaded yet for context, but only for SOME, not all

Now I know this question has been asked a million times before, but I still couldn't figure it out. I …

javascript requirejs amd js-amd
Webpack with requirejs/AMD

I'm working on a new module for an existing project that still uses requireJS for module loading. I'm trying to …

javascript webpack requirejs frontend amd
How to refer to Typescript enum in d.ts file, when using AMD?

I want to define a typescript interface to represent, say, an error. Something like this: enum MessageLevel { Unknown, Fatal, Critical, …

typescript amd