{"id":23537738,"url":"https://github.com/prod3v3loper/webpack-html-css-sass-javascript-typescript-preact","last_synced_at":"2026-04-12T15:32:29.780Z","repository":{"id":159024020,"uuid":"168174670","full_name":"prod3v3loper/webpack-html-css-sass-javascript-typescript-preact","owner":"prod3v3loper","description":"🏷 Start with a ready environment with Webpack TypeScript and Preact","archived":false,"fork":false,"pushed_at":"2019-01-29T21:53:07.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-15T00:23:27.494Z","etag":null,"topics":["css","html","javascript","preact","sass","typescript","webpack"],"latest_commit_sha":null,"homepage":"https://www.tnado.com/blog/webpack-project-example/","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/prod3v3loper.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":"2019-01-29T15:07:33.000Z","updated_at":"2019-03-05T21:36:13.000Z","dependencies_parsed_at":"2023-05-02T23:48:38.322Z","dependency_job_id":null,"html_url":"https://github.com/prod3v3loper/webpack-html-css-sass-javascript-typescript-preact","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/prod3v3loper/webpack-html-css-sass-javascript-typescript-preact","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prod3v3loper%2Fwebpack-html-css-sass-javascript-typescript-preact","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prod3v3loper%2Fwebpack-html-css-sass-javascript-typescript-preact/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prod3v3loper%2Fwebpack-html-css-sass-javascript-typescript-preact/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prod3v3loper%2Fwebpack-html-css-sass-javascript-typescript-preact/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prod3v3loper","download_url":"https://codeload.github.com/prod3v3loper/webpack-html-css-sass-javascript-typescript-preact/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prod3v3loper%2Fwebpack-html-css-sass-javascript-typescript-preact/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278838812,"owners_count":26054800,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"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":["css","html","javascript","preact","sass","typescript","webpack"],"created_at":"2024-12-26T03:19:07.994Z","updated_at":"2025-10-07T20:17:03.765Z","avatar_url":"https://github.com/prod3v3loper.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Webpack + HTML + CSS + SASS + JavaScript + TypeScript + Preact\n\nThe followings can be used and edited here:\n\n* HTML\n* CSS\n* SASS\n* JavaScript\n* TypeScript\n* Preact\n\nThis package includes the following:\n\npackage.json\n```\n    \"dependencies\": {\n        \"preact\": \"^8.3.1\"\n    },\n    \"devDependencies\": {\n        \"awesome-typescript-loader\": \"^5.2.1\",\n        \"clean-webpack-plugin\": \"^0.1.19\",\n        \"css-loader\": \"^0.28.11\",\n        \"html-webpack-plugin\": \"^3.2.0\",\n        \"node-sass\": \"^4.11.0\",\n        \"sass-loader\": \"^6.0.7\",\n        \"style-loader\": \"^0.20.3\",\n        \"ts-loader\": \"^5.3.3\",\n        \"typescript\": \"^3.2.2\",\n        \"webpack\": \"^4.28.4\",\n        \"webpack-cli\": \"^3.2.1\",\n        \"webpack-dev-server\": \"^3.1.10\",\n        \"webpack-merge\": \"^4.1.4\"\n    }\n```\n\n# Install\n\nYou can download the project and start it directly.\nOr you create a Project folder and open your Terminal, to switch in the project folder.\n```\ncd /Users/username/project/path/\n```\nClone the repo to your local envoirement\n```\ngit clone https://github.com/prod3v3loper/webpack-html-css-sass-javascript-typescript.git /Users/username/Projects/\n```\nAnd now install all Dev Dependencies in package.json\n```\nnpm install\n```\n\n# Usage\nWe added commands in our package.json to run with npm instead of npx\n\npackage.json\n```\n    \"scripts\": {\n        \"server\": \"webpack-dev-server --open --config webpack.dev.js\",\n        \"dev\": \"webpack --config webpack.dev.js\",\n        \"build\": \"webpack --config webpack.pro.js\"\n    },\n```\n\nAnd this we use in which we npm run and our command names.\nThis command start the Server with the hotmodule.\n```\nnpm run server\n```\nThis command build the dist folder with the end product.\n```\nnpm run build\n```\n\n# Contribute\n\nPlease [file an issue](https://github.com/prod3v3loper/webpack-html-css-sass-javascript-typescript-preact/issues) if you\nthink something could be improved. Please submit Pull Requests when ever\npossible.\n\n# Authors\n\n* **Samet Tarim** - *All works* - [prod3v3loper](https://www.tnado.com/author/prod3v3loper/)\n\n# License\n\n[MIT](https://github.com/prod3v3loper/webpack-html-css-sass-javascript-typescript-preact/blob/master/LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprod3v3loper%2Fwebpack-html-css-sass-javascript-typescript-preact","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprod3v3loper%2Fwebpack-html-css-sass-javascript-typescript-preact","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprod3v3loper%2Fwebpack-html-css-sass-javascript-typescript-preact/lists"}