Answer the question
In order to leave comments, you need to log in
Are there equivalents for Ubuntu like Xampp, only package containing node.js server?
Is there any equivalent to Xampp, only to work with node.js on Ubuntu?
So that you can immediately install node.js, npm, mongoDB and some kind of admin panel to manage MongoDB with one package. Immediately configured so that all parts interact with each other. To immediately start development.
Answer the question
In order to leave comments, you need to log in
sudo apt-get update
sudo apt-get install nginx
sudo ufw app list
sudo ufw allow 'Nginx HTTP'
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6
echo "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.list
sudo apt-get update
sudo apt-get install -y mongodb-org
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question