Hey, I'm writing a server for a multiplayer game with Bun and I'm wondering if there is an alternative to setInterval that does not vary by ~3ms. I've found some stuff online about using setImmediate
Also, I'll be running a WebSocket server at the same time. Will heavy traffic with lots of messages impact the accuracy of the timer?
Thanks!