{"id":13480795,"url":"https://github.com/chrissy-dev/eleventy-web-starter","last_synced_at":"2025-04-06T10:12:53.322Z","repository":{"id":39109594,"uuid":"170705269","full_name":"chrissy-dev/eleventy-web-starter","owner":"chrissy-dev","description":"Eleventy Web Starter is a lightweight Eleventy boilerplate utilising, ESBuild Tailwind and PostCSS.","archived":false,"fork":false,"pushed_at":"2024-04-07T20:15:04.000Z","size":1368,"stargazers_count":314,"open_issues_count":7,"forks_count":33,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-06-23T04:58:08.160Z","etag":null,"topics":["css","eleventy","html","netlify","postcss","static-site-generator","tailwind-css","webpack"],"latest_commit_sha":null,"homepage":"https://eleventywebstarter.netlify.app","language":"Nunjucks","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chrissy-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-02-14T14:35:55.000Z","updated_at":"2024-06-23T04:58:40.214Z","dependencies_parsed_at":"2024-06-23T05:08:12.643Z","dependency_job_id":null,"html_url":"https://github.com/chrissy-dev/eleventy-web-starter","commit_stats":null,"previous_names":["scottishstoater/jamstack-web-starter"],"tags_count":18,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrissy-dev%2Feleventy-web-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrissy-dev%2Feleventy-web-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrissy-dev%2Feleventy-web-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrissy-dev%2Feleventy-web-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrissy-dev","download_url":"https://codeload.github.com/chrissy-dev/eleventy-web-starter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247464222,"owners_count":20942970,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","eleventy","html","netlify","postcss","static-site-generator","tailwind-css","webpack"],"created_at":"2024-07-31T17:00:45.090Z","updated_at":"2025-04-06T10:12:53.309Z","avatar_url":"https://github.com/chrissy-dev.png","language":"Nunjucks","funding_links":[],"categories":["Starters \u0026 Themes","Starter Projects","Nunjucks","Starter projects"],"sub_categories":[],"readme":"# Eleventy Web Starter\n\nAn opinionated starter template for building static websites using [Eleventy](https://www.11ty.dev/). This starter kit is designed to help you quickly set up a modern, fast, and efficient static site with best practices for templating, styling, and performance optimisation.\n\n## ✨ Features\n\n- **Eleventy (11ty)** for static site generation\n- **Nunjucks** templating language and **Markdown** support\n- **SCSS** for modular and maintainable styling\n- **ESBuild** for fast and efficient bundling of JavaScript\n- **Image Optimisation** using Eleventy plugins\n- **Live Reload** for rapid development\n- **SEO Optimizations** and social sharing metadata\n- Pre-configured for easy **deployment to Netlify**, **Vercel**, or **GitHub Pages**\n\n## 🛠️ Tech Stack\n\n- **Static Site Generator**: [Eleventy (11ty)](https://www.11ty.dev/)\n- **Templating Languages**: Nunjucks, Liquid, Markdown\n- **Styling**: SCSS, PostCSS\n- **JavaScript**: ES6 Modules\n- **Build Tool**: ESBuild\n- **Deployment**: Netlify, Vercel, GitHub Pages\n\n## 🚀 Getting Started\n\n### Prerequisites\n\nMake sure you have the following installed on your machine:\n\n- [Node.js](https://nodejs.org/) (v14+)\n- [npm](https://www.npmjs.com/) or [Yarn](https://yarnpkg.com/)\n\n### Installation\n\n1. **Clone the Repository:**\n\n   ```bash\n   git clone https://github.com/chrissy-dev/eleventy-web-starter.git\n   cd eleventy-web-starter\n   ```\n\n2. **Install Dependencies:**\n\n   ```bash\n   npm install\n   ```\n\n   Or, if using Yarn:\n\n   ```bash\n   yarn install\n   ```\n\n### Running the Project\n\nStart the local development server:\n\n```bash\nnpm run dev\n```\n\nThis command will:\n\n- Build the project using Eleventy\n- Watch for changes in source files\n- Serve the project at `http://localhost:8080`\n- Enable live reload for a smooth development experience\n\n### Building for Production\n\nTo generate a production-ready build, run:\n\n```bash\nnpm run build\n```\n\nThe output will be in the `dist` folder, optimised and ready for deployment.\n\n## 📂 Project Structure\n\nHere's an overview of the core structure of this project:\n\n```plaintext\neleventy-web-starter/\n├── src/                 # Source files for the project\n│   ├── _data/           # Data files in JSON or JS format\n│   ├── _includes/       # Reusable components\n│   ├── _layouts/        # Reusable layouts\n│   ├── _assets/         # Assets - JS, CSS (Tailwind)\n├── .eleventy.js         # Eleventy configuration file\n├── package.json         # Node dependencies and scripts\n├── postcss.config.js    # PostCSS Config\n└── README.md            # Project documentation\n```\n\n## 📜 Available Scripts\n\n- **`npm start`**: Start the development server with live reload.\n- **`npm run build`**: Create a production build of the site.\n- **`npm run clean`**: Remove the `dist` folder to reset the build.\n\n## 🌐 Deployment\n\nThis starter is optimised for deployment on popular static site hosts. Follow the instructions below for different providers:\n\n### Netlify\n\n1. Click the button below to deploy to Netlify:\n\n   [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/chrissy-dev/eleventy-web-starter)\n\n2. Configure the build settings:\n\n   - **Build Command**: `npm run build`\n   - **Publish Directory**: `dist`\n\n### Vercel\n\n1. Install the [Vercel CLI](https://vercel.com/docs/cli) if not already installed:\n\n   ```bash\n   npm install -g vercel\n   ```\n\n2. Deploy using the Vercel CLI:\n\n   ```bash\n   vercel\n   ```\n\n3. Follow the prompts to complete the deployment.\n\n## 🤝 Contributing\n\nContributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/chrissy-dev/eleventy-web-starter/issues).\n\nTo contribute:\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature-branch`)\n3. Commit your changes (`git commit -m 'Add a new feature'`)\n4. Push to the branch (`git push origin feature-branch`)\n5. Open a Pull Request\n\n## 📝 License\n\nThis project is [MIT](LICENSE) licensed.\n\n## 📧 Contact\n\nIf you have any questions or need further assistance, feel free to reach out:\n\n- **GitHub**: [chrissy-dev](https://github.com/chrissy-dev)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrissy-dev%2Feleventy-web-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrissy-dev%2Feleventy-web-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrissy-dev%2Feleventy-web-starter/lists"}