Given an html string, convert all img src attributes from relative to absolute (Node / Javascript)

I have a raw string of html on a node server.

I need to convert all of the img src attributes from relative to absolute.

What is the best (simplest) way to do this?

Thanks!