mkdir ~/vxmppb/ && cd ~/vxmppb/
npm i --prefix ./ vxmppb
cp ./node_modules/vxmppb/config.ini.dist ./config.ini
nano config.ini
nodejs ./node_modules/vxmppb/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 ./node_modules/vxmppb/index.js > /dev/null 2>&1 & echo $! > /tmp/vxmppb.pid
To kill the bot, simply type
kill $(cat /tmp/vxmppb.pid)