Quickstart

Get from zero to a running site in a few minutes.

Windows Users!

Make sure you use the correct workspace for your CLI tool!

Running the project on the Windows filesystem with WSL (mnt/c/...) can cause significant performance issues!

Requirements

Before installing Marque, make sure you have:

Check your versions:

sh
  node -v # >= v18.0.0
  npm -v

Installation

Install from source (recommended)

Install the marque package directly from github

sh
  npm install -g github:Loxed/marque

This makes the marque command available globally.

Verify installation

sh
marque --help

If the command runs, you're ready to go.

Create and run your site

Create a project

Scaffold a new site:

sh
marque new my-site
cd my-site

Start the dev server

Run the local server with live reload:

sh
marque serve .

Then open http://localhost:3000.

Edit content

Modify files inside pages/.
Changes are reflected instantly in your browser.

Build for production

Generate static files:

sh
marque build .

Output is written to dist/.