Skip to content

Latest commit

History

35 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

loadOnDemand

Load on demand angularjs modules. Angularjs module is designed to download other modules angularjs when they need them (lazy load).

Key features

  1. Dependencies are automatically loaded
  2. Debugger like ( no eval code )
  3. The ability to mix normal boot and load on demand

Using

  1. Put loadOnDemand.js into you project:

    <scriptsrc="loadOnDemand.js"></script>
  2. Specify dependence loadOnDemand module for your application:

    varapp=angular.module('app',['loadOnDemand']);
  3. Configure the service provider $loadOnDemandProvider

    app.config(['$loadOnDemandProvider',function($loadOnDemandProvider){varmodules=[{name: 'module_name',// name of modulescript: 'js/module_name.js'// path to javascript file}];$loadOnDemandProvider.config(modules);}]);
  4. When will need to download the module, enter it in the markup by the directive load-on-demand:

    <divload-on-demand="'module_name'"></div>

See the example in the folder 'example'

About

angularjs load on demand module

Resources

Stars

88 stars

Watchers

11 watching

Forks

Releases

Packages

Used by

Contributors

Languages