MEAN: Difference between revisions

From air
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:


Book: Simon Holmes, Getting MEAN with Mongo, Express, Angular, and Node, Mannings, http://www.manning.com/sholmes/
Book: Simon Holmes, Getting MEAN with Mongo, Express, Angular, and Node, Mannings, http://www.manning.com/sholmes/

==Getting Started==

<pre>
sudo npm install -g meanio
mean init myApp
cd myApp && npm install
grunt
</pre>

Revision as of 13:57, 26 August 2014

MEAN stack = MongoDB + Express + AngularJS + Node.js

for building dynamic data-driven web applications


http://mean.io/

Book: Simon Holmes, Getting MEAN with Mongo, Express, Angular, and Node, Mannings, http://www.manning.com/sholmes/

Getting Started

sudo npm install -g meanio  
mean init myApp                    
cd myApp && npm install
grunt