Skip to main content

Create Coralite Scaffolding

The create-coralite package is a command-line interface (CLI) tool designed to scaffold new projects using the Coralite static-site-generator (SSG).

Note: This guide assumes familiarity with basic terminal operations, Node.js (v22.12.0 or higher), and package managers such as npm, yarn, or pnpm.

Installation & Usage #

Install via Package Manager #

To initialize a new Coralite project:

bash
Code copied!
  npm create coralite@latest

Alternatively, use other package managers:

bash
Code copied!
  yarn create coralite
bash
Code copied!
  pnpm create coralite

Note: The create-coralite CLI is registered as both create-coralite and cca (short for Coralite Create App).

CLI Options #

-o, --output <name> #

bash
Code copied!
  npm create coralite -o my-project

-t, --template <name> #

bash
Code copied!
  npm create coralite -t scss

Start Building with Coralite!

Use the scaffolding script to get jump started into your next project with Coralite

Copied commandline!