{"id":20857563,"url":"https://github.com/reactjsresources/react-webpack-redux","last_synced_at":"2026-03-12T15:38:02.153Z","repository":{"id":44382171,"uuid":"115366555","full_name":"ReactJSResources/react-webpack-redux","owner":"ReactJSResources","description":"Simple React Webpack Babel Starter Kit with Redux","archived":false,"fork":false,"pushed_at":"2018-10-03T17:37:06.000Z","size":2545,"stargazers_count":6,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-20T15:58:40.450Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ReactJSResources.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-12-25T22:37:54.000Z","updated_at":"2025-02-27T07:38:57.000Z","dependencies_parsed_at":"2022-07-14T13:20:50.774Z","dependency_job_id":null,"html_url":"https://github.com/ReactJSResources/react-webpack-redux","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ReactJSResources/react-webpack-redux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReactJSResources%2Freact-webpack-redux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReactJSResources%2Freact-webpack-redux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReactJSResources%2Freact-webpack-redux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReactJSResources%2Freact-webpack-redux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ReactJSResources","download_url":"https://codeload.github.com/ReactJSResources/react-webpack-redux/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReactJSResources%2Freact-webpack-redux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30430972,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"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":[],"created_at":"2024-11-18T04:41:05.617Z","updated_at":"2026-03-12T15:38:02.109Z","avatar_url":"https://github.com/ReactJSResources.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e\n    \u003ch3 align=\"center\"\u003eSimple React Webpack Babel Starter Kit\u003cbr\u003e\u003c/h3\u003e\n\u003c/p\u003e\n\n[![CircleCI](https://circleci.com/gh/ReactJSResources/react-webpack-babel/tree/master.svg?style=svg)](https://circleci.com/gh/ReactJSResources/react-webpack-babel/tree/master)\n\n[![Dependency Status](https://img.shields.io/david/ReactJSResources/react-webpack-babel.svg)](https://david-dm.org/dylang/npm-check)\n\nTired of complicated starters with 200MB of dependencies which are hard to understand and modify? This is for you!\n\n### What were using\n\n* React 16\n* Webpack 3\n* React Router 4\n* SASS\n* Babel Cli\n* Hot Module Reloading\n* Jest 21 \n* Enzyme 3 for testing\n\n### Features\n\n* Simple src/index.jsx and src/index.css (local module css).\n* Webpack configuration for development (with hot reloading) and production (with minification).\n* CSS module loading, so you can include your css by ```import styles from './path/to.css';```.\n* Both js(x) and css hot loaded during development.\n* [Webpack Dashboard Plugin](https://github.com/FormidableLabs/webpack-dashboard) on dev server.\n\n### To run\n\n* You'll need to have [git](https://git-scm.com/) and [node](https://nodejs.org/en/) installed in your system.\n* Fork and clone the project:\n\n```\ngit clone https://github.com/ReactJSResources/react-webpack-babel.git\n```\n\n* Then install the dependencies:\n\n```\nnpm install\n```\n\n* Run development server:\n\n```\nnpm start\n```\n\n* Or you can run development server with [webpack-dashboard](https://github.com/FormidableLabs/webpack-dashboard):\n\n```\nnpm run dev\n```\n\nOpen the web browser to `http://localhost:8888/`\n\n### To test\nTo run unit tests:\n\n```\nnpm test\n```\n\nTests come bundled with:\n\n* Jest\n* Enzyme\n* React Test Utils\n* React Test Renderer\n\n### To build the production package\n\n```\nnpm run build\n```\n\n### Running build locally\n\nIf you are using Mac/Linux simply run the following command inside public directory:\n\n```\npython -m SimpleHTTPServer 8000\n```\n\n### Nginx Config\n\nHere is an example Nginx config:\n\n```\nserver {\n\t# ... root and other options\n\n\tgzip on;\n\tgzip_http_version 1.1;\n\tgzip_types text/plain text/css text/xml application/javascript image/svg+xml;\n\n\tlocation / {\n\t\ttry_files $uri $uri/ /index.html;\n\t}\n\n\tlocation ~ \\.html?$ {\n\t\texpires 1d;\n\t}\n\n\tlocation ~ \\.(svg|ttf|js|css|svgz|eot|otf|woff|jpg|jpeg|gif|png|ico)$ {\n\t\taccess_log off;\n\t\tlog_not_found off;\n\t\texpires max;\n\t}\n}\n```\n\n### Eslint\nThere is a `.eslint.yaml` config for eslint ready with React plugin.\n\nTo run linting, run:\n\n```\nnpm run lint\n```\n\n### Notes on importing css styles\n* styles having /src/ in their absolute path considered part of the application and exported as local css modules.\n* other styles considered global styles used by components and included in the css bundle directly.\n\n### Contribute\nPlease contribute to the project if you know how to make it better, including this README :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freactjsresources%2Freact-webpack-redux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freactjsresources%2Freact-webpack-redux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freactjsresources%2Freact-webpack-redux/lists"}