ngDefine
October 10, 2019 ยท View on GitHub
This project seamlessly integrates AngularJS into RequireJS based applications.
Overview
Using ngDefine you can leverage RequireJS to package AngularJS modules into reusable components.
ngDefine('my.module', [
'jquery',
'./bar',
'module:ngResource',
'module:my.other.module:my-other-module'
], function(module, $) {
// define the module
module.value("foo", "bar");
});
ngDefine allows you to declare both plain RequireJS dependencies and AngularJS modules that get resolved using RequireJS before the module definition callback is called. Read more about it in the docs.
Resources
Building the Project
- Fork + clone the repository.
- Install dependencies via
npm install. - Build the library via
grunt.
License
Use under terms of MIT license.
