1

I'm just learning mean.js . Just did the installation steps in http://meanjs.org . But when loaded in browser, console is showing error Uncaught ReferenceError: angular is not defined . do we need to include angularjs separately ?

syymza
  • 679
  • 1
  • 8
  • 23
I'm nidhin
  • 2,592
  • 6
  • 36
  • 62

2 Answers2

2

Use this command

bower install --allow-root
Pang
  • 9,564
  • 146
  • 81
  • 122
Sumit Tiwari
  • 139
  • 1
  • 8
0

No, you dont need to add angularjs one more time because angularjs is added as default in meanjs project.

You may try:

npm install

This command will install node packages and bower packages.

And then run project again:

npm start

Check running meanjs at http://localhost:3000

Hopefully you have a nice time with meanjs.

WatersLake
  • 1,252
  • 2
  • 13
  • 21