Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Created June 21, 2021 16:52
Show Gist options
  • Select an option

  • Save LinauxTerminology/ac9d5237701c37fa9ad8f0f6869f8673 to your computer and use it in GitHub Desktop.

Select an option

Save LinauxTerminology/ac9d5237701c37fa9ad8f0f6869f8673 to your computer and use it in GitHub Desktop.
I Will Do Installation MEAN Stack Ubuntu
If you need MEAN Stack Setup contact with me:
Email: urmirohman218@gmail.com
Skype: https://join.skype.com/
Telegram:https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
apt-get update -y
##Step 1 - Install MongoDB
apt-get install mongodb -y
systemctl start mongodb
systemctl enable mongodb
##Step 2 – Install Node.js
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install gcc g++ make
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
Step 3 -Next, install other required packages including yarn, gulp, and pm2 with the following command:
sudo apt-get update && sudo apt-get install yarn
npm install -g yarn
npm install -g gulp
npm install pm2 -g
@LinauxTerminology

Copy link
Copy Markdown
Author

Screenshot from 2021-06-21 22-24-08
Screenshot from 2021-06-20 23-40-09

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment