BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage News Bun 1.2 Improves Node Compatibility and Adds Postgres Client

Bun 1.2 Improves Node Compatibility and Adds Postgres Client

Log in to listen to this article

The Bun team recently released Bun v1.2, with major progress regarding compatibility with Node.js, a key component of Bun’s value proposition. Bun 1.2 also now has a built-in S3 object storage API and a built-in Postgres client that comes in addition to the existing built-in SQLite client.

Bun, designed as a drop-in replacement for Node.js, has Node.js compatibility as a core target feature. With Bun 1.2, the team now measures that compatibility by running the Node.js test suite on every change to the code. Core Node modules such as path, os, string_decoder, puny_code, query_string, url, events, stream, fs, and more now pass 90% of the Node.js test suite.

The release reports however that the Node.js test suite could not be run as is, as it is specific to Node.js idiosyncrasies. For instance, the test suite checks the exact Node.js string of error messages, which may change between releases. Some tests also relied on internal Node.js details. As a result, the Bun team ported the Node test suite to Bun, for instance replacing error strings with error codes so Bun has the freedom to add helpful details to the error messages.

Bun v1.2 also adds support for the node:http2 module to create HTTP/2 servers, with a purported 2x speed improvement vs. the same module as part of the Node.js distribution. Bun v1.2 additionally adds support for node:dgram (UDP sockets management), node:cluster (spawning new Bun instances), and node:zlib.

Importantly, Bun 1.2 adds built-in support for S3. Bun developers can now read, write, and delete files from an S3 bucket using APIs that are compatible with Web standards like Blob. The release note explained:

Decoupling storage from compute prevents an entire class of reliability issues: low disk space, high p95 response times from busy I/O, and security issues with shared file storage.

S3 is the defacto-standard for object storage in the cloud. The S3 APIs are implemented by a variety of cloud services, including Amazon S3, Google Cloud Storage, Cloudflare R2, and dozens more.

Bun S3’s native client touts 5x speed improvement when downloading files vs. packages like @aws-sdk/client-s3 with Node.js.

Bun 1.2 additionally expands support for SQL databases and contributes Bun.sql, a built-in SQL client with Postgres support. The new client comes to complement the existing built-in SQ_Lite_ client.

SQLite fits a wide variety of use cases. As Wesley Aptekar-Cassels argued on his blog:

On the whole, I think using SQLite is a good tradeoff for a lot of projects, including web apps that expect to have a potentially large number of users. As long as you don’t expect to need tens of thousands of small writes per second, thousands of large writes, or long-lived write transactions, it’s highly likely that SQLite will support your use case. It significantly reduces complexity and operational burden and eases testing, with the primary downside that it’s somewhat harder to get levels of availability and uptime that almost no one needs in the first place.

Postgres support means Bun developers also have a built-in option for those heavy use cases when SQLite is no longer a good fit. The client is written in native code with optimizations including automatic prepared statements, query pipelining, connection pooling, and structure caching. The release note claims up to 50% speed improvement when reading rows vs, using the most popular Postgres clients with Node.js.

By introducing built-in support for popular data stores like S3 and Postgres, Bun strives to accommodate further the demands of production applications for scalable, cloud-native solutions with fewer external dependencies.

Bun v1.2 is a large release with plenty of additional and important features. Developers are invited to review the full release note.

Bun is written in Zig and uses WebKit’s JavaScriptCore for its JavaScript engine. Bun 1.0 was released in September 2023

About the Author

BT