1
vote
1answer
20 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 ...
16
votes
3answers
2k 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
1k 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 ...