[!WARNING] Bluejay is currently under development. Please open an issue if you find bugs.
Build static pages with MDX, JSX/TSX components, and Bun.
You will need Bun v1.1.x or higher to install Bluejay.
$ bun add https://github.com/apacheli/bluejay
[!NOTE] Binaries will soon be available on JSR whenever Bluejay becomes stable.
This will create a minimal boilerplate to start using Bluejay. We recommend that you choose this approach as opposed to setting it up on your own. Instantly create a new project with the following command:
$ bun create apacheli/bluejay-app
Serve development files:
$ bun serve
Build to dist:
$ bun dle
This is the absolute minimum amount of code necessary to start a Bluejay project:
import { start } from "bluejay";
await start({
assets: "assets",
dir: import.meta.dir,
dist: "dist",
pages: "pages",
render: (page) => <page.mod.default />,
});
Bluejay environment variables:
BLUEJAY_MODE=build
BLUEJAY_PATH=
BLUEJAY_PORT=1337
[!NOTE] Documentation is coming soon!