Uncaught ReferenceError : angular is not defined (Using testem)

angularjs, javascript, jquery, node.js

Solution

The error says, you are attempt to use `angular` before load the script. I didn't see any reference of `angularjs` library in your `index.html` file.

So add a reference for `angularjs` before `app.js` and `controller.js`.

Problem

Error is found in line 1 of 2 files: - controllers.js - app.js Which is attached below together with html. The app appears when I start up local server but I am unable to login or signup by clicking the sign up button after entering my details. Is it a 404 error? I also tried to add these 2 lines into the index.html file (I thought was some items I didnt define) but did not work. index.html file ``` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title></title> <link href="lib/ionic/css/ionic.css" rel="stylesheet"> <link href="css/style.css" rel="stylesheet"> *<!-- ionic/angularjs js -->* <script src="lib/ionic/js/ionic.bundle.js"></script> <script src="https://cdn.firebase.com/v0/firebase.js"></script> <!-- firebase --> <script src="https://cdn.firebase.com/libs/angularfire/0.5.0/angularfire.min.js"></script> <!-- angularfire --> <script src="https://cdn.firebase.com/v0/firebase-simple-login.js"></script> <!-- firebase-simple-login --> *<!-- cordova script (this will be a 404 during development) -->* <script src="cordova.js"></script> <!-- app's js --> <script src="js/app.js"></script> <script src="js/controllers.js"></script> </head> <body ng-app="bucketList" animation="slide-left-right-ios7"> <ion-nav-bar class="bar-stable nav-title-slide-ios7"> <ion-nav-back-button class="button-icon icon ion-chevron-left"> Back </ion-nav-back-button> </ion-nav-bar> <ion-nav-view></ion-nav-view> </body> </html> ``` controllers.js file (Error in first line) ``` angular.module('bucketList.controllers', []) .controller('SignInCtrl', [ '$scope', '$rootScope', '$firebaseAuth', '$window', ``` app.js file (Error in first line) ``` angular.module('bucketList', ['ionic', 'firebase', 'bucketList.controllers']) ```

Original source