is there a way of opening a new window using express nodejs

I am using express.
I knew there were res.send, res.render and res.redirect methods.

but is there a way to open a new window?

thanks all.

This would need to happen on the client side via

window.open("link", "_blank")