Statue is a blazingly-fast static site generator based on Markdown, SvelteKit, and a component library.
One-line setup (npm):
yes | npx sv create statue-site --template minimal --types ts --no-add-ons --install npm && cd statue-site && npm install statue-ssg && npx statue init && npm install && npm run dev
bun:
yes | npx sv create statue-site --template minimal --types ts --no-add-ons --install bun && cd statue-site && bun add statue-ssg && npx statue init && bun install && bun run dev
pnpm:
yes | npx sv create statue-site --template minimal --types ts --no-add-ons --install pnpm && cd statue-site && pnpm add statue-ssg && npx statue init && pnpm install && pnpm run dev
yarn:
yes | npx sv create statue-site --template minimal --types ts --no-add-ons --install yarn && cd statue-site && yarn add statue-ssg && npx statue init && yarn install && yarn run dev
windows: Statue requires pathing changes before it can work on Windows. There are no regular Windows users in Statue's dev team, so we cannot guarantee or maintain consistent support for Windows: contact us if you're interested in interested in implementing support for Windows or maintaining that functionality!
Content like blogs and documentation can be added and modified directly through .md files, with pages and the site structure itself based on Svelte components. Statue sites are fully static, so management is simple, development can be non-technical, and hosting is cheap or free. Join us on Discord! 🗿
Statue is Fast, Simple, and Flexible from start to finish. It takes only one command to get started, builds and deployments are fast, hosting is simple, sites are extensible, and developing a Statue site is about building what you want rather than battling, learning, and conforming to the tool itself.
.md files: no coding required.After running the setup command above, your site is live at http://localhost:5173.
Next steps:
.md files in content/ and they become pages automaticallyBuild and deploy your static site:
npm run build
Deploy the build/ directory to any static host. See deployment guide →
MIT