{"id":15112206,"url":"https://github.com/ggkovacs/gulp-sitebuild-starter-kit","last_synced_at":"2025-09-27T14:31:58.580Z","repository":{"id":23754912,"uuid":"27129175","full_name":"ggkovacs/gulp-sitebuild-starter-kit","owner":"ggkovacs","description":"Sitebuild starter kit based on gulp.js","archived":true,"fork":false,"pushed_at":"2022-02-12T13:54:10.000Z","size":4261,"stargazers_count":3,"open_issues_count":10,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-09-27T00:42:22.208Z","etag":null,"topics":["frontend","gulp","html-css-javascript","libsass","ruby-sass","sass","sitebuild","starter-kit"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/ggkovacs.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}},"created_at":"2014-11-25T14:22:38.000Z","updated_at":"2023-01-28T02:14:45.000Z","dependencies_parsed_at":"2022-08-22T05:50:24.339Z","dependency_job_id":null,"html_url":"https://github.com/ggkovacs/gulp-sitebuild-starter-kit","commit_stats":null,"previous_names":[],"tags_count":41,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ggkovacs%2Fgulp-sitebuild-starter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ggkovacs%2Fgulp-sitebuild-starter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ggkovacs%2Fgulp-sitebuild-starter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ggkovacs%2Fgulp-sitebuild-starter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ggkovacs","download_url":"https://codeload.github.com/ggkovacs/gulp-sitebuild-starter-kit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234444025,"owners_count":18833644,"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":["frontend","gulp","html-css-javascript","libsass","ruby-sass","sass","sitebuild","starter-kit"],"created_at":"2024-09-26T00:42:43.926Z","updated_at":"2025-09-27T14:31:53.980Z","avatar_url":"https://github.com/ggkovacs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [gulp](https://github.com/gulpjs/gulp)-sitebuild-starter-kit [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url]\n\u003e Sitebuild starter kit based on Gulp 4\n\nVersion: **4.0.5**\n\n## Quickstart\nDownload the kit or clone this repository and build on what is included in the `src` directory.\n\n[Download](https://github.com/ggkovacs/gulp-sitebuild-starter-kit/releases/latest) and run the follwing code in that directory to get started.\n\n```sh\n$ npm i -g gulp-cli \u0026\u0026 npm i\n```\n\nor\n\n```sh\n$ yarn global add gulp-cli \u0026\u0026 yarn\n```\n\n## Features\n\nPlease see our [gulpfile](gulpfile.babel.js) for up to date information on what we support.\n\n* CSS [Autoprefixing](https://github.com/postcss/autoprefixer)\n* Built-in preview server with [BrowserSync](https://www.browsersync.io/)\n* Automatically compile [Sass](http://sass-lang.com/) with [libsass](http://libsass.org)\n* Map compiled CSS to source stylesheets with [source maps](https://www.npmjs.com/package/gulp-sourcemaps)\n* Awesome [image optimization](https://www.npmjs.com/package/gulp-imagemin)\n* Automatically generates html files from [Panini](https://github.com/zurb/panini) templates\n* Automatically generates table of contents from pages (if there is more than one page)\n\n*For more information on what this generator can do for you, take a look at the [gulp plugins](package.json) used in our `package.json`.*\n\n## libsass\n\nKeep in mind that libsass is feature-wise not fully compatible with Ruby Sass. Check out [this](http://sass-compatibility.github.io) curated list of incompatibilities to find out which features are missing.\n\nIf your favorite feature is missing and you really need Ruby Sass, you can always switch to [gulp-ruby-sass](https://github.com/sindresorhus/gulp-ruby-sass) and update the `styles` function in gulpfile accordingly.\n\n## Getting Started\n\n- Install dependencies: `npm i -g gulp-cli \u0026\u0026 npm i` or `yarn global add gulp-cli \u0026\u0026 yarn`\n- Run `npm start` or `yarn start` to preview and watch for changes\n- Run `npm run build` or `yarn build` to build and optimize your sitebuild\n\n## Directory structure\n    .\n    └── src                    # Source folder\n        ├── assets             # Assets folder containing fonts, images, styles, svgs etc.\n        │   ├── favicons       # Favicons folder containing icons (.png, .ico, .svg etc.).\n        │   ├── fonts          # Fonts folder containing fonts (.eot, .svg, .ttf, .woff, or .woff2).\n        │   ├── images         # Images folder containing images (.jpg, .jpeg, .png, or .gif).\n        │   ├── scripts        # Scripts folder containing JavaScript files (.js).\n        │   └── styles         # Styles folder containing stylesheets (.scss, or .sass).\n        ├── data               # Data folder containing external data, which will be passed in to every page (.json, or .yml).\n        ├── helpers            # Helpers folder containing Handlebars helpers (.js).\n        ├── layouts            # Layouts to a folder containing layouts (.html, .hbs, or .handlebars).\n        ├── pages              # Pages to the root folder all pages live in.\n        └── partials           # Partials to a folder containing HTML partials.\n\n## Browser Support (.browserslistrc)\n\nAt present, we officially aim to support the following browsers:\n\n- \\\u003e 5%\n- last 2 versions\n- not ie \u003c= 10\n\nThis is not to say that kit cannot be used in browsers older than those reflected, but merely that our focus will be on ensuring our layouts work great in the above.\n\n## Inspiration\n\nGulp Sitebuild Starter Kit is inspired by [HTML5 Boilerplate](https://html5boilerplate.com/), Yeoman's [generator-gulp-webapp](https://github.com/yeoman/generator-gulp-webapp) and [Web Starter Kit](https://github.com/google/web-starter-kit).\n\n## License\nMIT © 2021 Gergely Kovács (gg.kovacs@gmail.com)\n\n[daviddm-image]: https://david-dm.org/ggkovacs/gulp-sitebuild-starter-kit/dev-status.svg\n[daviddm-url]: https://david-dm.org/ggkovacs/gulp-sitebuild-starter-kit#info=devDependencies\n[travis-image]: https://travis-ci.com/ggkovacs/gulp-sitebuild-starter-kit.svg?branch=master\n[travis-url]: https://travis-ci.com/ggkovacs/gulp-sitebuild-starter-kit\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fggkovacs%2Fgulp-sitebuild-starter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fggkovacs%2Fgulp-sitebuild-starter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fggkovacs%2Fgulp-sitebuild-starter-kit/lists"}