DEV Community

Discussion on: Send automated Discord messages through Webhooks using JavaScript

Collapse
 
oskarcodes profile image
Oskar Codes

You could start a Node server and use a node module like this one: npmjs.com/package/discord-webhook-...
Then you could maybe use a window.setInterval to execute it repeatedly with an interval.

Collapse
 
abidtkg profile image
Abid Hasan

Thank you!