{"id":21527379,"url":"https://github.com/uvacoder/webpack-js-boilerplate","last_synced_at":"2026-05-18T08:32:32.701Z","repository":{"id":103088024,"uuid":"396457339","full_name":"Uvacoder/webpack-js-boilerplate","owner":"Uvacoder","description":null,"archived":false,"fork":false,"pushed_at":"2021-08-15T18:52:28.000Z","size":90,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T18:51:04.667Z","etag":null,"topics":["boilerplate","starter","webpack"],"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/Uvacoder.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2021-08-15T18:52:18.000Z","updated_at":"2021-09-05T19:06:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"503d5eba-499d-4562-b664-f8edd0417916","html_url":"https://github.com/Uvacoder/webpack-js-boilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Uvacoder/webpack-js-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Uvacoder%2Fwebpack-js-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Uvacoder%2Fwebpack-js-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Uvacoder%2Fwebpack-js-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Uvacoder%2Fwebpack-js-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Uvacoder","download_url":"https://codeload.github.com/Uvacoder/webpack-js-boilerplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Uvacoder%2Fwebpack-js-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33170843,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T05:43:36.989Z","status":"ssl_error","status_checked_at":"2026-05-18T05:43:19.133Z","response_time":71,"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":["boilerplate","starter","webpack"],"created_at":"2024-11-24T01:48:43.053Z","updated_at":"2026-05-18T08:32:32.696Z","avatar_url":"https://github.com/Uvacoder.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Webpack react minimal boilerplate\n\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"dependencies\" title=\"dependencies\" src=\"https://img.shields.io/david/hashemkhalifa/webpack-react-boilerplate.svg\" \u003e\n   \u003cimg alt=\"dependencies\" title=\"dependencies\" src=\"https://img.shields.io/github/last-commit/hashemkhalifa/webpack-react-boilerplate.svg\" \u003e\n\u003c/p\u003e\n\n\u003e Minimal webpack boilerplate using latest version of babel  [click](#technologies-used) \n\u003e with real time server changes ;)\n\n\n\n\n\n### Table of contents\n[Project structure](#project-structure)\n\n[Installation](#installation)\n\n[Configuration](#configuration)\n\n[Technologies used](#technologies-used)\n\n### Project structure\n\n````\nbuild/\nsrc/\n|- index.js _______________________________ # Application entry \n|- style.scss _____________________________ # Application style using css modules\n\n\nwebpack\n|- paths.js ________________________________ # webpack paths needed\n|- webpack.common.js _______________________ # common webpack config\n|- webpack.dev.js __________________________ # development config\n|- webpack.prod.js _________________________ # production config      \n````\n\n\n### Installation\n\n1- Clone the boilerplate repo\n\n`git clone git@github.com:HashemKhalifa/webpack-js-boilerplate.git`\n\n2- `yarn` or `npm install` to install npm packages\n\n3- start dev server using `yarn start` or `npm start`.\n\n3- build and bundling your resources for production `yarn build`.\n\n4- Unit testing will watch all your changes in the test files as well as create coverage folder for you. \n`yarn test`\n\n\n### Configuration\n* Webpack Config paths based on your file structure you can go to `webpack/paths.js` and modify the source and file names based on your need.\n* `webpack/webpack.common.js` config common webpack for both dev and production environments.\n* webpack/webpack.dev.js config webpack for dev environment.\n* `webpack/webpack.prod.js` config webpack for production environment.\n* `/webpack.config.js` main webpack config that merge common and webpack environment based config.\n* Prettier config `/.prettierc`.\n* Browsers list config `/.browserslistrc`.\n\n\n#### Technologies used\n\n\n* [Webpack 4](https://github.com/webpack/webpack) \n* [Babel 7](https://github.com/babel/babel) [ transforming JSX and ES6,ES7,ES8 ]\n* [Jest](https://github.com/facebook/jest) [ Unit test]\n* [Eslint](https://github.com/eslint/eslint/) with airbnb config\n* [Prettier](https://github.com/prettier/prettier) [ Code formatter ]\n* [Style](https://github.com/webpack-contrib/style-loader) \u0026 [CSS Loader](https://github.com/webpack-contrib/css-loader) \u0026 [SASS-loader](https://github.com/webpack-contrib/sass-loader)\n* [CSS modules](https://github.com/css-modules/css-modules) [ Isolated style based on each component ]\n* [Browsers list](https://github.com/browserslist/browserslist) [ Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-preset-env ]\n* [Webpack dev serve](https://github.com/webpack/webpack-dev-server) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuvacoder%2Fwebpack-js-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuvacoder%2Fwebpack-js-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuvacoder%2Fwebpack-js-boilerplate/lists"}