我试图在webstorm中设置node.js和angular.js项目但我收到此错误信息:
/usr/bin/node app/src/app.js
/home/dac/WebstormProjects/web-plugin/app/src/app.js:1
ion (exports, require, module, __filename, __dirname) { var myApp = angular.mo
^
ReferenceError: angular is not defined
at Object.<anonymous> (/home/dac/WebstormProjects/web-plugin/app/src/app.js:1:75)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3
Process finished with exit code 1
我将angular.min.jr作为文件添加到我的框架设置中,并安装并配置了node.js.我应该怎么做才能让它运行?这是app.js
var myApp = angular.module('AngularChromeEx', []); //"ExecuteScriptService", "SendMessageService"
/*
myApp .config(['$routeProvider',
function($routeProvider) {
$routeProvider.
when('/browserPopup', {
templateUrl: 'views/PopupView.html',
controller: 'PopupController'
}).
otherwise({
redirectTo: 'views/PopupView.html'
});
}]);
*/