When i close the terminal the bot closes how do i make it not close, So it can run all night all day.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
You need some node module that would allow to run it forever.
I can recommend you two -
pm2
orforever
. I’m more on side ofpm2
as it have better process management. Also there are tutorials on DO for setting it up.Follow PM2 part of Set Up Node.js App for Production. It’ll show you how to make it run always and as a service (e.g. automatically run it when servers reboot or after power on)
Hi there,
Just came across this question and wanted to mention that in addition to using PM2 by following the steps here: Set Up Node.js App for Production., I could also suggest going through this tutorial here on How To Build a Discord Bot with Node.js.
Regards, Bobby
You need to host the script somewhere at all times, this is what a server is typically used for, I have bought a VPS (Virtual Private Server) for my discord bots so I can host them on there and they will always be running, these VPS’s cost around 5$ a month.