File SystemProcess
Get the process uptime in nanoseconds
Use Bun.nanoseconds() to get the total number of nanoseconds the bun process has been alive.
Spawn a child process and communicate using IPC
Use Bun.spawn() to spawn a child process. When spawning a second bun process, you can open a direct inter-process communication (IPC) channel between the two
Listen to OS signals
Bun supports the Node.js process global, including the process.on() method for listening to OS signals.