I am using Express to serve resized images. Which Node.js package should be used to resize the image? I've seen a lot of packages that change the image and save it as a file, but I need to change the image and write data to response. Example:
package.compress('/path/to/image.png', 
    {width: 100px, height: 100px}, 
    function(result) {
        res.end(result);
});
 
    