Как узнать, существует ли окно в Nodejs

if(typeof window !== 'undefined') {
  console.log("this should print only if window object actually exists")
}
Gleaming Grasshopper