Server code JavaScript is synchronous programming model -- for instance query, get response, inline with no callbacks.
So it supports blocking
Would be nice to have a sleep function so I could add polling and periodic tasks on the server.
Polling on server eliminates complexity and extra network traffic on the client.
Periodic tasks would allow me to age out data without initiating something from a client (e.g. only keep 7 days of history).