Get Started with Nue

1. Install Bun

First, install Bun:

# Install Bun
curl -fsSL https://bun.sh/install | bash

2. Install Nue

Next, install Nue globally:

# Install Nue
bun install nuekit --global

3. Create a Website

Create your new website with:

# Create a website
nue create simple-blog

Done! Your browser should now open to: http://localhost:8083/welcome/:

Welcome Screen

Caption: The welcome screen after successful setup.

4. Follow the Tutorial

Check out the step-by-step tutorial to learn how to build websites with Nue.


Details

System Requirements

No Windows Support

Nue is not currently tested or developed under Windows, so use it at your own risk.

Having Problems?

Please post an issue. Thank you!

Node Setup

If you prefer to install Nue with pnpm, npm, or yarn, use:

pnpm install nuekit --global

The default engine is Bun, so the command line interface starts with #!/usr/bin/env bun. To override the shebang with Node, run:

node $(which nue)

To make this command permanent, add the following alias to your ~/.bashrc or ~/.zshrc file:

alias node-nue="node $(which nue)"