Mean App
To start your application with MEAN, you need to clone the base MEAN repository from Github. This repository contains all the packages, modules and also a sample code base in order to start and make it easy to develop your application. Following the steps below will guide you to install the latest MEAN version.
git clone https://github.com/abhilashpujari/meanapp
To run Backend api
cd meanapp
npm install
npm run start
To run Frontend client
cd angular-client
npm install
ng serve