Install Node.js
curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -sudo apt install -y nodejs
Verify installation of Node.js and npm:
node -vnpm -v
For Other OS
Install MongoDB
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.listsudo apt-get updatesudo apt-get install -y mongodb-org
Verify:
sudo service mongod startmongo
For Other OS