About Swifty

Swifty is the next generation of static site generator!

It makes it really simple to create a full website that loads pages almost instantly.

Quick Start

1. Install Swifty:

npm install @daz4126/swifty

2. Start a new project:

npx swifty init

3. Add some more pages to the 'pages' folder (just write them in Markdown).

4. Start the development server:

npx swifty start

Visit localhost:3000 to see your site in action. The development server includes live reload - your browser will automatically refresh when you make changes.

5. Build for production:

npx swifty build

This creates a clean build in the dist/ folder ready for deployment (without any development scripts).

6. Learn More about all the other features, including layouts, partials and front-matter configuration.