#INSTALLING MEAN STACK
- sudo apt-get update -qq
- sudo apt-get install gcc make build-essential
- npm rebuild
- npm install -g bower
- npm install -g node-sass
- npm install -g autoprefixer
- npm install -g gulp
- npm install -g gulp-sass
- npm install -g gulp-autoprefixer
- npm install
INFO ABOUT THE C++ BSON ERROR:
I guess you did not have the make tools available when you installed your mongodb library. I suggest you do
xcode-select --install (on a mac) or sudo apt-get install gcc make build-essential (on ubuntu)
and run
rm -rf node_modules npm cache clean npm install OR just npm update based on @tobias comment (after installing build-essential)
npm update