git clone https://git.vanderwarker.family/vxmppb/vxmppb.git
cd vxmppb/
npm i
cp config.ini.dist config.ini
nano config.ini
nodejs index.js
To keep this script running in the background you can use screen or tmux! If you don't have them installed, just run it in the background using this command;
nohup nodejs index.js > /dev/null 2>&1 & echo $! > /tmp/vxmppb.pid
To kill the bot, simply type
kill $(cat /tmp/vxmppb.pid)