Skip to content
Luca Palonca edited this page May 23, 2022 · 5 revisions

The mean.io docs are designed to give you the tools to be up and running quickly while still providing a good understanding of the technologies used, the design philosophy and usage information. The documentation project is ongoing and never ending so feel free to let us know you feel needs to be added or if there is anything that is not clear. Enjoy!


MEAN is an acronym for MongoDB, Express, AngularJS, and NodeJS. We need to install some of these before we begin.

PreRequisites

Installation

Installation is a two 2 minute process and will give you all the components you need to get started.

 > sudo npm install -g mean-cli       // Get the mean cmdline
 > sudo npm install -g gulp    // Install gulp command line globally
 > mean init myApp                    // create your first app
 > cd myApp && npm install            // Install dependencies
 > gulp                              // Launch mean

Congratulations! First step towards being a MEAN Developer.

Clone this wiki locally