{"id":21697348,"url":"https://github.com/jeescu/react-redux-starter","last_synced_at":"2026-03-06T05:11:46.440Z","repository":{"id":88770304,"uuid":"61522730","full_name":"jeescu/react-redux-starter","owner":"jeescu","description":"Basic React Redux boilerplate.","archived":false,"fork":false,"pushed_at":"2017-05-04T11:39:39.000Z","size":32,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-26T07:03:27.554Z","etag":null,"topics":["enzyme","immutable","mocha","react","redux","webpack"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jeescu.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}},"created_at":"2016-06-20T06:37:57.000Z","updated_at":"2017-07-13T13:02:57.000Z","dependencies_parsed_at":"2023-03-09T00:45:50.387Z","dependency_job_id":null,"html_url":"https://github.com/jeescu/react-redux-starter","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeescu%2Freact-redux-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeescu%2Freact-redux-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeescu%2Freact-redux-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeescu%2Freact-redux-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jeescu","download_url":"https://codeload.github.com/jeescu/react-redux-starter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248565179,"owners_count":21125435,"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","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":["enzyme","immutable","mocha","react","redux","webpack"],"created_at":"2024-11-25T19:24:58.941Z","updated_at":"2026-03-06T05:11:46.400Z","avatar_url":"https://github.com/jeescu.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React + Redux starter\n\n[![Build Status](https://travis-ci.org/jeescu/react-redux-starter.svg?branch=master)](https://travis-ci.org/jeescu/react-redux-starter)\n[![Coverage Status](https://coveralls.io/repos/github/jeescu/react-redux-starter/badge.svg?branch=master)](https://coveralls.io/github/jeescu/react-redux-starter?branch=master)\n[![bitHound Dependencies](https://www.bithound.io/github/jeescu/react-redux-starter/badges/dependencies.svg)](https://www.bithound.io/github/jeescu/react-redux-starter/master/dependencies/npm)\n[![bitHound Dev Dependencies](https://www.bithound.io/github/jeescu/react-redux-starter/badges/devDependencies.svg)](https://www.bithound.io/github/jeescu/react-redux-starter/master/dependencies/npm)\n\nBasic dependencies to get started with your React project using [Redux](http://redux.js.org/)\n\n### Tools / Dependencies\n\nCheck [package.json](https://github.com/jeescu/react-redux-starter/blob/master/package.json)\n\nDevelopment tools\n* [Webpack](https://webpack.github.io/)\n* [Babel](https://babeljs.io/)\n* [Eslint](http://eslint.org/docs/user-guide/getting-started)\n\t- [airbnb](https://github.com/airbnb/javascript)\n\nHelper tools\n* [Immutable](https://github.com/facebook/immutable-js)\n* [Lodash](https://github.com/lodash/lodash)\n\nTest libraries\n* [Mocha](https://mochajs.org/)\n* [Expect](https://github.com/mjackson/expect)\n* [Enzyme](https://github.com/airbnb/enzyme)\n* [Sinon](http://sinonjs.org/)\n\n### Getting Started\n\nCreate a new project based on `react-redux-starter`.\n\n#### Install from source\n\n1. First, clone this project:\n\n\t```\n\t\u003e git clone git@github.com:jeescu/react-redux-starter.git\n\t\u003e cd \u003cmy-project-name\u003e\n\t```\n\n2. Install dependencies and start coding!\n\n\t```\n\t\u003e npm install                   # Install project dependencies\n\t\u003e npm start                     # Compile and launch\n\t```\n\n#### Development\n\n1. Start development\n\n\t```\n\t\u003e npm start\n\t```\n2. Run tests\n\n\t```\n\t\u003e npm test\n\t```\n\n#### Deployment\n\n1. Bundle the app using webpack\n\n\t```\n\t\u003e npm run build\n\t```\n\n2. Run your production server\n\n\t```\n\t\u003e npm run start:dist\n\t```\n\t\n### Application Structure\n\n```\n├── config                   # Project configuration settings\n├── dist                     # Application build for production\n├── src                      # Application source code\n│   ├── actions              # Action creators and action types\n│   ├── components           # All Reusable Presentational Components\n│   ├── containers           # All Container Components\n|   ├── reducers             # Pieces of state for store\n│   │   └── index.js         # Combined reducers as a single state\n│   ├── routes               # Application routing\n│   │   └── index.js         # Routes entry point\n│   ├── static               # Static assets (publicly viewable from url)\n│   ├── store                # Redux state container with environment-specific configurations.\n│   │   ├── index.js         # Create and instrument redux store\n│   ├──  styles              # Global styles\n│   ├── index.html           # Main HTML page container for app\n│   └── index.js             # Application entry point bootstrap and rendering\n├── tools                    # Project tools and helpers\n│   ├── devServer.js         # Development entry point\n│   └── prodServer.js        # Production entry point\n├── tests                    # Unit tests\n└── webpack.config.*         # Webpack config file for environment build\n```\n\n## Learning Resources\n\n* [Getting Started with Redux](https://egghead.io/courses/getting-started-with-redux) by [Dan Abramov](https://github.com/gaearon)\n* [Modern React Redux](https://www.udemy.com/react-redux/learn/v4/overview) in [udemy](https://www.udemy.com)\n* [Redux Documentation](http://redux.js.org/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeescu%2Freact-redux-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeescu%2Freact-redux-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeescu%2Freact-redux-starter/lists"}