As a developer who's been keeping an eye on the rising star that is Bun, I was excited to see the latest release, v1.3.14. This update brings a slew of fixes, new features, and experimental technologies that are sure to make a significant impact on the way we build and deploy our applications. In this article, I'll dive into the key highlights of this release and what they mean for developers like me.
The Power of Bun.Image
One of the most notable additions in this release is Bun.Image, a built-in image processing API. This is a game-changer for anyone working with images in their applications, as it eliminates the need for external libraries or services. With Bun.Image, you can easily resize, compress, and manipulate images directly within your code. Here's an example of how you can use it:
import { Image } from 'bun';
const image = await Image.fromFile('input.jpg');









