Difference between revisions of "AngularJS tooling"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (Created page with "The AngularJS framework == Module loader == == Webpack == == ES6 == == ES5 == == TypeScript == == Typings == == See also == * AngularJS * JavaScript library...") |
Karl Jones (Talk | contribs) (→Module loader) |
||
Line 2: | Line 2: | ||
== Module loader == | == Module loader == | ||
+ | |||
+ | * Not required, but recommended. | ||
+ | * Load only what is needed | ||
+ | * Provide namespacing | ||
+ | * Don't need script tags | ||
+ | |||
+ | Modules provide translation between a module (file) and a pseudo module (wrapped function). | ||
+ | |||
+ | See [[AngularJS module]]. | ||
== Webpack == | == Webpack == |
Revision as of 14:26, 31 December 2016
The AngularJS framework
Contents
[hide]Module loader
- Not required, but recommended.
- Load only what is needed
- Provide namespacing
- Don't need script tags
Modules provide translation between a module (file) and a pseudo module (wrapped function).
See AngularJS module.