Top "Angularjs-module" questions

The angular.

What is the difference between angular-route and angular-ui-router?

I'm planning to use AngularJS in my big applications. So I'm in the process to find out the right modules …

javascript angularjs angularjs-routing angular-ui-router angularjs-module
AngularJS: Uncaught Error: [$injector:modulerr] Failed to instantiate module?

I am new to AngularJS and working my way through some documents and tutorials to learn. My question is in …

angularjs jsfiddle angularjs-module
Is there a way in AngularJS to define constants with other constants?

I'm trying to define constants with other constants, but it seems that it can't be done, because the initial constant …

angularjs angularjs-module
How to check for the existence of a module without an error being raised?

In Angular 1.2, ngRoute is a separate module so you can use other community routers like ui.router instead. I'm writing …

angularjs angularjs-routing angularjs-module
AngularJS Modules/Scope Sharing

I recently started using AngularJS and the way I'm building my apps now is like this: MainController.js var app = …

angularjs angularjs-scope angularjs-module
Is it possible to override constants for module config functions in tests?

I've spent quite a while banging my head against trying to override injected constants provided to modules' config functions. My …

angularjs angularjs-module
Modules and namespace / name collision in AngularJS

Consider the following jfiddle http://jsfiddle.net/bchapman26/9uUBU/29/ //angular.js example for factory vs service var app = angular.module(…

angularjs namespaces collision angularjs-module
Why is my javascript file not loading?

I'm new to both JavaScript & AngularJS. I'm building an app which talks to a building management system: it has …

javascript html angularjs angularjs-module
How to share data between two modules in AngularJS?

I am using AngularJS along with c# mvc. I have a home page where user enters some data and that …

angularjs angularjs-module
Using a factory inside another factory AngularJS

I have a module... angular.module('myModule', []); And then a factory angular.module('myModule') .factory('factory1', [ function() { //some var's …

javascript angularjs angularjs-factory angularjs-module