bluejay iconBluejay 0.5.0

What's New in Bluejay 0.4.0?

Install

$ bun add https://github.com/apacheli/bluejay

Additions and Bug Fixes

WebSocket Watcher

The WebSocket watcher in action.

You can now see your changes occur in real time by enabling Bun's --hot mode and adding the following to your document's body:

import { BLUEJAY_DEV } from "bluejay";

const myPage = (
    <html>
        <head>
            <title>Hello, World!</title>
        </head>
        <body>
            <BLUEJAY_DEV />
        </body>
    </html>
);

<BLUEJAY_DEV /> will be ignored if Bun.env.BUILD_MODE === "build".

Contributors

We love contributions! Check out our GitHub for more details.