1
vote
1answer
24 views

having trouble using the angular.module directive to create a new module

I am having trouble using the angular.module directive to create a new module. here is the code to create the module: angular.module('dcuapp', []) .config(dcuRouter); function ...
37
votes
4answers
7k views

Difference between angular-route and angular-ui-router

I am new in angular. I find angular quite interesting and planing to use angular in my big apps. So I am in the process to find out right module. What is the difference between ngRoute ...
4
votes
1answer
2k views

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 an open-source module that aims to work for multiple different router ...