{"id":20318389,"url":"https://github.com/rumenpetrov/frontend-starter-kit","last_synced_at":"2026-04-10T12:31:10.520Z","repository":{"id":44147328,"uuid":"87771560","full_name":"rumenpetrov/frontend-starter-kit","owner":"rumenpetrov","description":"Minimal frontend only boilerplate that includes zurb panini, postcss, babel and gulp.","archived":false,"fork":false,"pushed_at":"2023-03-06T13:30:55.000Z","size":9944,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-05T06:22:17.540Z","etag":null,"topics":["architecture","automation","babel","boilerplate","frontend","gulp","panini","postcss","starter-kit","zurb-panini"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rumenpetrov.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":"2017-04-10T05:51:35.000Z","updated_at":"2023-03-08T20:22:55.000Z","dependencies_parsed_at":"2024-11-14T18:52:04.936Z","dependency_job_id":null,"html_url":"https://github.com/rumenpetrov/frontend-starter-kit","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rumenpetrov/frontend-starter-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rumenpetrov%2Ffrontend-starter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rumenpetrov%2Ffrontend-starter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rumenpetrov%2Ffrontend-starter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rumenpetrov%2Ffrontend-starter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rumenpetrov","download_url":"https://codeload.github.com/rumenpetrov/frontend-starter-kit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rumenpetrov%2Ffrontend-starter-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31642645,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["architecture","automation","babel","boilerplate","frontend","gulp","panini","postcss","starter-kit","zurb-panini"],"created_at":"2024-11-14T18:39:16.297Z","updated_at":"2026-04-10T12:31:10.464Z","avatar_url":"https://github.com/rumenpetrov.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# frontend-starter-kit\nMinimal frontend only boilerplate with gulp, zurb panini, postcss and babel.\n\nThe following packages are required to run the project:\n- node js\n- npm\n\n## Available Commands\nOpen command window and navigate to project's folder root(where 'gulpfile.bebel.js' and 'package.json' files are located). There we can execute the following commands:\n\u003ctable width=\"100%\"\u003e\n  \u003ctr\u003e\n    \u003cth\u003eCommand\u003c/th\u003e\n    \u003cth\u003eDescription\u003c/th\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003enpm install\u003c/td\u003e\n    \u003ctd\u003eThis command download all gulp dependencies and store them in 'node_modules' folder. We execute this command only once, when we start new the project.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003enpm start\u003c/td\u003e\n    \u003ctd\u003eThis command create background process that watches all source files for changes compile them in '/dist' folder. We execute this command only once before we start making changes in source files.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003enpm run assets\u003c/td\u003e\n    \u003ctd\u003eClean assets folder and update the content in it.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003enpm run build\u003c/td\u003e\n    \u003ctd\u003eCommand that build static pages, compile, copy and minify resources.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003enpm run serve\u003c/td\u003e\n    \u003ctd\u003eOptional simple server that is serving /dist folder on localhost:8080 by default.\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## What should I do first\n- Clone the project.\n```sh\n$ git clone \u003cREPO_URL\u003e\n```\n- Delete .git folder.\n```sh\n$ rm -rf .git/\n```\n- Build static pages for the first time(creates 'dist' folder).\n```sh\n$ npm run build\n```\n- Start work on your project.\n```sh\n$ npm start\n```\n\n### Folder structure:\n```\n\u003cPROJECT_ROOT\u003e\n  └─src\n    └─markup    # html partials\n    └─styles    # css source files\n    └─scripts   # js source files\n  └─dist\n    └─markup    # static html\n    └─styles    # compiled css\n    └─scripts   # compiled js\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frumenpetrov%2Ffrontend-starter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frumenpetrov%2Ffrontend-starter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frumenpetrov%2Ffrontend-starter-kit/lists"}