Questions tagged [umd]

Universal Module Definition (UMD) is an API for JavaScript modules that are capable of working in browsers, on the server, or elsewhere.

Universal Module Definition (UMD) is an API for JavaScript modules that are capable of working in browsers, on the server, or elsewhere.

The UMD pattern typically attempts to offer compatibility with the most popular script loaders of the day (RequireJS, CommonJS, and others). In many cases it uses AMD as a base, with special-casing added to handle CommonJS compatibility.

See the GitHub repo for more information.

198 questions
0
votes
1 answer

How to use requirejs to load jQuery plugin intlTelInput?

The plugin in question is https://github.com/Bluefieldscom/intl-tel-input. All script tags are inserted by requirejs properly, but I still can't use the plugin intlTelInput. What am I missing? require.config({ baseUrl: "/Scripts/require", …
Believe2014
  • 3,894
  • 2
  • 26
  • 46
-1
votes
1 answer

Issue with Angular library (UMD) and dynamic loading

I have an Angular app that contains a load button. When you click the load button it renders a remote UMD library. The first time I click the load button I have the following error while importing my library using SystemJS: core.js:15714 ERROR…
Cyril
  • 161
  • 2
  • 22
-2
votes
1 answer

Using React Virtualized Select without node backend

I wanted to use the React Virtualized Select to show almost around 1 million records in a select dropdown. I have already created the project based on flask and angularjs. I wasn't able to find any resources for such a dropdown through angularjs, so…
Naren Murali
  • 19,250
  • 3
  • 27
  • 54
1 2 3
13
14