Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Command to create a new Eleventy site with the Pack11ty starter

A Next.js starter template with TypeScript, SCSS, Prettier, and ESLint preconfigured for building websites.

A Hugo theme that ports the classic Octopress blog design with customizable sidebar, shortcodes, and configurable features.

An open-source, token-based themeable design system for Astro with runtime theme switching, semantic design tokens, and a component library.

Reusable Svelte animation components and templates built with Tailwind CSS and Svelte Motion, including Magic UI and Aceternity UI ports.

A Hugo template for architecture websites, built on Hugolify with Bootstrap and Netlify deployment.
create-pack11ty is a command-line scaffolding tool that generates a new Eleventy website using the Pack11ty starter. It belongs to the boilerplate category and its core function is to turn a single npm command into a ready-to-edit static site project.
create-pack11ty is a command-line scaffolding tool that generates a new Eleventy website using the Pack11ty starter. It takes a project folder name as input and produces a complete Eleventy project directory initialized with the Pack11ty template. The tool runs through npm, so it works anywhere Node.js and npm are installed. It is maintained by GitHub user nhoizey, who also hosts the Pack11ty starter documentation at pack11ty.dev.
npm create pack11ty@latest my-project-folder scaffolds a new Eleventy site without requiring a global install.@latest tag in the command ensures npm fetches the most recent published version of the starter.When you run npm create pack11ty@latest my-project-folder, npm downloads the create-pack11ty package from the npm registry. The package then creates a new folder with the name you provided and populates it with the Pack11ty Eleventy starter files. After the command finishes, you can open the folder and run a local development server to preview the site.
It creates a new Eleventy website project from the Pack11ty starter. You provide a project folder name, and the tool generates the initial site structure for you.
Run npm create pack11ty@latest my-project-folder in your terminal, replacing my-project-folder with your desired project name. The command needs no prior installation because npm fetches the package automatically.
Yes, create-pack11ty is an npm command, so Node.js and npm must be installed on your machine to use it.
No. Pack11ty is the Eleventy starter template that the command installs. create-pack11ty is the command-line tool that scaffolds that starter into a new project.
The project's GitHub repository at nhoizey/create-pack11ty is the source for the code and issue tracking.
