{"id":19946034,"url":"https://github.com/itsabdessalam/webpack-boilerplate","last_synced_at":"2026-04-16T19:32:58.100Z","repository":{"id":122675645,"uuid":"163015958","full_name":"itsabdessalam/webpack-boilerplate","owner":"itsabdessalam","description":"🚀 webpack boilerplate","archived":false,"fork":false,"pushed_at":"2020-08-16T04:55:07.000Z","size":1438,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2025-10-13T04:14:29.015Z","etag":null,"topics":["babel7","boilerplate","es6","frontend","javascript","precommit","precommit-errors","sass","skeleton","starter-kit","template","webpack","webpack-boilerplate"],"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/itsabdessalam.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":"2018-12-24T18:38:35.000Z","updated_at":"2023-03-07T17:00:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"66d2b98d-bf65-40a0-9633-ba73b3512486","html_url":"https://github.com/itsabdessalam/webpack-boilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/itsabdessalam/webpack-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsabdessalam%2Fwebpack-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsabdessalam%2Fwebpack-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsabdessalam%2Fwebpack-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsabdessalam%2Fwebpack-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itsabdessalam","download_url":"https://codeload.github.com/itsabdessalam/webpack-boilerplate/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsabdessalam%2Fwebpack-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31901454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["babel7","boilerplate","es6","frontend","javascript","precommit","precommit-errors","sass","skeleton","starter-kit","template","webpack","webpack-boilerplate"],"created_at":"2024-11-13T00:27:54.572Z","updated_at":"2026-04-16T19:32:58.066Z","avatar_url":"https://github.com/itsabdessalam.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![webpack-boilerplate](./ressources/webpack-boilerplate.png)\n\n# Webpack Boilerplate\n\n\u003e This starter project aims to be more productive when starting a webpack project.\n\n## Requirements\n\nThis starter project should be working as expected with the following minimal version of:\n\n| Dependency |  Version  |\n| ---------- | :-------: |\n| Node       | \u003e= v8.0.0 |\n| NPM        | \u003e= v5.0.0 |\n\n## 🚀 Quick start\n\n1.  **Clone the git repository**\n\n```bash\n# cloning git repository into `my-webpack-starter` folder\ngit clone https://github.com/Abdessalam98/webpack-boilerplate my-webpack-starter\n\n# install project dependencies\ncd my-webpack-starter \u0026\u0026 npm install\n```\n\n2.  **Start Developing**\n\n**Dev Version**\n\n```bash\nnpm run dev\n```\n\n**Prod Version**\n\n```bash\nnpm run prod\n```\n\n3.  **Open browser and start editing files!**\n\n\u003e Site is running at http://localhost:9000\n\n## 🧐 What's inside?\n\n```\n.\n├── node_modules        # This is the directory of the modules (npm packages) for your project\n├── config              # Config files\n|   ├── index.js\n|   ├── dev.js\n|   └── prod.js\n├── build               # Webpack configuration files\n|   ├── webpack.common.js\n|   ├── webpack.dev.js\n|   └── webpack.prod.js\n├── src                 # This is the directory of entry point files related to the front-end of your site\n|   ├── index.js        # This is the entry point file for Webpack\n|   └── assets\n|       ├── fonts\n|       ├── images\n|       ├── javascripts\n|       └── stylesheets\n├── .gitignore          # This file tells git which files it should not track\n├── .prettierrc.json    # This is the configuration file for Prettier\n├── .eslintrc.json      # This is the configuration file for ESLint\n├── .stylelintrc.json   # This is the configuration file for stylelint\n├── commitlint.config.js # This is the configuration file for commitlint\n├── index.html          # This is the file where Webpack serve content\n├── package.json        # This file tells npm which packages to install for your project\n├── README.md\n└── LICENSE\n```\n\n## ✨ Features\n\n-   Babel\n-   Linting with ESLint and Stylelint\n-   Code formatting with Prettier\n-   Precommit with husky and lint-staged\n-   Commit conventions with commitlint\n\n## 💩 When trying to commit bad code\n\nIt runs linters before committing and prevents errors to go in your repository.\n\n**Example with errors**\n\n![preview-precommit-errors](./ressources/preview-precommit-errors.png)\n\n**Example after fixing errors**\n\n![preview-precommit-errors-resolved](./ressources/preview-precommit-errors-resolved.png)\n\n## Author\n\n[Abdessalam BENHARIRA](https://abdessalam-benharira.me)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsabdessalam%2Fwebpack-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitsabdessalam%2Fwebpack-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsabdessalam%2Fwebpack-boilerplate/lists"}