I'm coming from a LAMP background, and as a learning project I downloaded MEAN.JS so I can dive into the MEAN stack. I got the whole thing running, but I feel like I'm missing something...
I followed all of the steps at http://meanjs.org/generator.html, got Mongo running, got my server running, etc. My index.html file loads on localhost:3000 and life is good.
So in my mind, I'm going down the checklist...
MongoDB - Check (running after executing mongod.exe).
Node - Check (server is running after executing grunt).
Express - Check (tied to Node as server).
Angular - ....??
I see that installing MEAN.JS installed several folders for Angular, but I don't think my index.html file is magically "working" for Angular. In fact, to get Angular working, I had to do it the good old fashioned way in my head element:
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
So what did MEAN.JS actually do here? And how should I be integrating Angular if not this way? I'd appreciate any help here on this.
Thanks!