{"id":16347769,"url":"https://github.com/privatenumber/webpack-playground","last_synced_at":"2026-03-06T00:31:38.937Z","repository":{"id":55129841,"uuid":"261899639","full_name":"privatenumber/webpack-playground","owner":"privatenumber","description":"Demonstration of different Webpack configurations","archived":false,"fork":false,"pushed_at":"2021-03-03T02:40:01.000Z","size":1590,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-02T15:39:36.096Z","etag":null,"topics":["configuration","demos","experiments","playground","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/privatenumber.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":"2020-05-06T23:14:53.000Z","updated_at":"2023-12-08T16:58:11.000Z","dependencies_parsed_at":"2022-08-14T12:50:58.503Z","dependency_job_id":null,"html_url":"https://github.com/privatenumber/webpack-playground","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/privatenumber/webpack-playground","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/privatenumber%2Fwebpack-playground","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/privatenumber%2Fwebpack-playground/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/privatenumber%2Fwebpack-playground/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/privatenumber%2Fwebpack-playground/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/privatenumber","download_url":"https://codeload.github.com/privatenumber/webpack-playground/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/privatenumber%2Fwebpack-playground/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30156285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"ssl_error","status_checked_at":"2026-03-05T22:39:24.771Z","response_time":93,"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":["configuration","demos","experiments","playground","webpack"],"created_at":"2024-10-11T00:45:51.885Z","updated_at":"2026-03-06T00:31:38.914Z","avatar_url":"https://github.com/privatenumber.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🤹‍♂️ Webpack playground\n\nThis repo contains a variety of examples that demonstrate different Webpack configurations and an evaluation of their outputs.\n\n\n## ⛳️ Demos\n\u003c!-- demos:start --\u003e\n- [depend-on](/demos/depend-on)\n\n\tWebpack's depend-on feature\n\n- [dll](/demos/dll)\n\n\tSplitting bundles with DLL to improve build-time\n\n- [esbuild](/demos/esbuild)\n\n\tBlazing fast JS transpilation \u0026 minification with esbuild\n\n- [filename-chunkhash-wp4](/demos/filename-chunkhash-wp4)\n\n\tFilename chunkhash using Webpack 4\n\n- [filename-chunkhash-wp5](/demos/filename-chunkhash-wp5)\n\n\tFilename chunkhash using Webpack 5\n\n- [filename-contenthash-wp4](/demos/filename-contenthash-wp4)\n\n\tFilename contenthash using Webpack 4\n\n- [filename-contenthash-wp5](/demos/filename-contenthash-wp5)\n\n\tFilename contenthash using Webpack 5\n\n- [filename-hash-wp4](/demos/filename-hash-wp4)\n\n\tFilename hash using Webpack 4\n\n- [filename-hash-wp5](/demos/filename-hash-wp5)\n\n\tFilename hash using Webpack 5\n\n- [library-targets](/demos/library-targets)\n\n\tSee the different output formats Webpack supports\n\n- [library-targets-externals](/demos/library-targets-externals)\n\n\tSee how different library-targets externalize modules\n\n- [magic-comments](/demos/magic-comments)\n\n\tSee how Webpack magic comments influence code-splitting\n\n- [module-output](/demos/module-output)\n\n\tWebpack's experimental ESM module output\n\n- [split-chunks-all](/demos/split-chunks-all)\n\n\tWebpack's Split Chunks on all chunks\n\n- [split-chunks-all-dynamic-import](/demos/split-chunks-all-dynamic-import)\n\n\tWebpack's Split Chunks on all chunks w/ dynamic import\n\n- [split-chunks-individual-dependency-vendors](/demos/split-chunks-individual-dependency-vendors)\n\n\tWebpack's Split Chunks to individually chunk each node module\n\n- [tree-shaking-lodash-babel-plugin](/demos/tree-shaking-lodash-babel-plugin)\n\n\tTree-shaking performance using babel-plugin-lodash\n\n- [tree-shaking-lodash-babel-webpack-plugin](/demos/tree-shaking-lodash-babel-webpack-plugin)\n\n\tTree-shaking performance using babel-plugin-lodash \u0026 lodash-webpack-plugin\n\n- [tree-shaking-lodash-es](/demos/tree-shaking-lodash-es)\n\n\tTree-shaking performance with lodash-es\n\n- [tree-shaking-lodash-es-wp4](/demos/tree-shaking-lodash-es-wp4)\n\n\tTree-shaking performance with lodash-es using Webpack 4\n\n- [tree-shaking-lodash-path](/demos/tree-shaking-lodash-path)\n\n\tBundling performance importing specific lodash utils\n\u003c!-- demos:end --\u003e\n\n## 🛠 Contributing\n\n### Setup\n```sh\n$ nvm i  # Use appropriate Node.js version via http://nvm.sh\n$ pnpm i --frozen-lockfile # Install dependencies using pnpm\n```\n\n### Running builds\n\n#### Run all package builds\n```sh\n$ pnpm run -r build\n```\n\n#### Run build in a specific package\n```sh\n$ pnpm run -C demos/\u003cPACKAGE_NAME\u003e build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprivatenumber%2Fwebpack-playground","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprivatenumber%2Fwebpack-playground","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprivatenumber%2Fwebpack-playground/lists"}