{"id":50935021,"url":"https://github.com/piecioshka/boilerplate-webpack-typescript","last_synced_at":"2026-06-17T08:02:23.648Z","repository":{"id":34590129,"uuid":"38537314","full_name":"piecioshka/boilerplate-webpack-typescript","owner":"piecioshka","description":"🍴 Starter with Webpack \u0026 TypeScript","archived":false,"fork":false,"pushed_at":"2025-03-01T12:39:37.000Z","size":439,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-23T12:34:48.549Z","etag":null,"topics":["boilerplate","typescript","webpack"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"geckom/ChatScript","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/piecioshka.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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},"funding":{"github":"piecioshka","buy_me_a_coffee":"piecioshka","patreon":"piecioshka","custom":["https://www.paypal.me/piecioshka","https://patronite.pl/piecioshka"]}},"created_at":"2015-07-04T14:55:38.000Z","updated_at":"2025-02-02T08:42:08.000Z","dependencies_parsed_at":"2024-11-06T17:18:00.373Z","dependency_job_id":"04b74ba3-d8a5-4e4b-adc0-31991294e01f","html_url":"https://github.com/piecioshka/boilerplate-webpack-typescript","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/piecioshka/boilerplate-webpack-typescript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piecioshka%2Fboilerplate-webpack-typescript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piecioshka%2Fboilerplate-webpack-typescript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piecioshka%2Fboilerplate-webpack-typescript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piecioshka%2Fboilerplate-webpack-typescript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/piecioshka","download_url":"https://codeload.github.com/piecioshka/boilerplate-webpack-typescript/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piecioshka%2Fboilerplate-webpack-typescript/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34439296,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","typescript","webpack"],"created_at":"2026-06-17T08:02:21.962Z","updated_at":"2026-06-17T08:02:23.643Z","avatar_url":"https://github.com/piecioshka.png","language":"JavaScript","funding_links":["https://github.com/sponsors/piecioshka","https://buymeacoffee.com/piecioshka","https://patreon.com/piecioshka","https://www.paypal.me/piecioshka","https://patronite.pl/piecioshka"],"categories":[],"sub_categories":[],"readme":"# boilerplate-webpack-typescript\n\n🍴 Starter with Webpack \u0026 TypeScript\n\n## Features\n\n- ✅ Webpack\n- ✅ TypeScript\n- ✅ Distribution directory `dist/`\n- ✅ Directory with files as-is without changes `static/` (they will copied to `dist/static/`)\n- ✅ Development with `webpack-dev-server`\n- ✅ Hosting with `http-server`\n- ✅ Bundle file size analytics with `webpack-bundle-analyzer`\n- ✅ Two build strategies: **dev** (with source maps) \u0026 **prod** (compress file)\n\n## Getting started\n\nYou can start in two ways:\n\n### Use Git\n\n```bash\nmkdir PROJECT_NAME\ncd $_     # Note: \"$_\" is the last argument of the previous command\ngit init  # Note: branch \"master\" is created\ngit remote add boilerplate git@github.com:piecioshka/boilerplate-webpack-typescript.git\ngit pull boilerplate master\ngit remote remove boilerplate\n```\n\nor ...\n\n### Use Zip\n\n1. Download package file:\n    \u003chttps://github.com/piecioshka/boilerplate-webpack-typescript/archive/master.zip\u003e\n2. Extract it to your project directory.\n\n## How to build an application?\n\n```bash\nnpm run build               # Development mode\nnpm run build:development   # Development mode\nnpm run build:production    # Production mode\n```\n\n_TIP: Serve `dist/` directory by `npm start`_\n\n## How to develop an application?\n\n```bash\nnpm run dev     # Use webpack-dev-server\n```\n\nor\n\n```bash\nnpm run watch   # Use webpack -w\n```\n\n_TIP: Serve `dist/` directory by `npm start`_\n\n## Remove generated directory\n\n```bash\nnpm run clear       # Remove only dist/\nnpm run clear:all   # Remove dist/ \u0026 node_modules/\n```\n\n## 🧩 Webpack Addons\n\nWhen would you like a modified Webpack configuration, please add a new \"addon\"\nto [webpack/addons/](webpack/addons/) directory.\n\n- [webpack.bundleAnalyzer.js](webpack/addons/webpack.bundleAnalyzer.js) - Analysis of bundle file weight\n- [webpack.copyStatic.js](webpack/addons/webpack.copyStatic.js) - Copy directory `static/` to `dist/static/` _(Enabled by default)_\n\n### How to run addons?\n\n```bash\n# Single addon\nnpm run dev -- --env addons=singleAddon\nnpm run build -- --env addons=singleAddon\nnpm run watch -- --env addons=singleAddon\nnpm run build:development -- --env addons=singleAddon\nnpm run build:production -- --env addons=singleAddon\n\n## Multiple addons\nnpm run dev -- --env addons=firstAddon,secondAddon\n```\n\n## License\n\n[The MIT License](https://piecioshka.mit-license.org) @ 2023\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiecioshka%2Fboilerplate-webpack-typescript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpiecioshka%2Fboilerplate-webpack-typescript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiecioshka%2Fboilerplate-webpack-typescript/lists"}