All Projects β†’ flexdinesh β†’ React Redux Boilerplate

flexdinesh / React Redux Boilerplate

Licence: mit
A minimal React-Redux boilerplate with all the best practices

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Redux Boilerplate

React Redux Hooks Starter
React-redux boilerplate using hooks 🎣
Stars: ✭ 69 (-91.36%)
Mutual labels:  react-redux, redux-saga, react-boilerplate
React Native Feature Boilerplate
Feature based Architecture for developing Scalable React Native Apps πŸš€ using react, redux, sagas and hooks
Stars: ✭ 139 (-82.6%)
Mutual labels:  react-redux, redux-saga, react-boilerplate
Youtube React
A Youtube clone built in React, Redux, Redux-saga
Stars: ✭ 421 (-47.31%)
Mutual labels:  jest, react-redux, redux-saga
React Boilerplate
πŸ”₯ A highly scalable, offline-first foundation with the best developer experience and a focus on performance and best practices.
Stars: ✭ 28,151 (+3423.28%)
Mutual labels:  redux-saga, react-boilerplate
eslint-config-adjunct
A reasonable collection of plugins to use alongside your main esLint configuration
Stars: ✭ 39 (-95.12%)
Mutual labels:  redux-saga, jest
SHOPMATE
front-end e-commerce system
Stars: ✭ 12 (-98.5%)
Mutual labels:  redux-saga, react-redux
energy-use-case-trading-client
Energy Use Case Web UI for Lition Trading Platform
Stars: ✭ 23 (-97.12%)
Mutual labels:  jest, react-redux
ReactNativeSagaFrame
RNεΌ€ε‘οΌˆδΈ€εˆ‡ε°½εœ¨δ»£η δΈ­οΌ‰
Stars: ✭ 13 (-98.37%)
Mutual labels:  redux-saga, react-redux
OneArtical
learning and practice redux,react-redux,redux-saga,redux-persist,redux-thunk and so on
Stars: ✭ 61 (-92.37%)
Mutual labels:  redux-saga, react-redux
React Native Navigation Redux Starter Kit
React Native Navigation(v2) Starter Kit with Redux, Saga, ESLint, Babel, Jest and Facebook SDK 😎
Stars: ✭ 271 (-66.08%)
Mutual labels:  jest, redux-saga
Soundcloud Redux
SoundCloud API client with React β€’ Redux β€’ Redux-Saga
Stars: ✭ 681 (-14.77%)
Mutual labels:  react-redux, redux-saga
redux-saga-rn-alert
Alert.alert()-Support for side effects with redux-saga in react-native-apps
Stars: ✭ 23 (-97.12%)
Mutual labels:  redux-saga, react-redux
timeoff-server
TimeOff is an application that allows companies' employees to set vacations before they begin taking their time off. Implemented in modern tech stack i.e. Node, Express, MongoDB.
Stars: ✭ 33 (-95.87%)
Mutual labels:  redux-saga, react-redux
quantum-blox
Quantum blox - modular UI boilerplate in react
Stars: ✭ 12 (-98.5%)
Mutual labels:  redux-saga, jest
auth-with-saga-example
code for https://medium.com/@stepankuzmin/authentication-with-react-router-redux-5-x-and-redux-saga-55da66b54be7
Stars: ✭ 14 (-98.25%)
Mutual labels:  redux-saga, react-redux
react-redux-crud
An example react-redux-saga CRUD application
Stars: ✭ 47 (-94.12%)
Mutual labels:  redux-saga, react-redux
React Redux Boilerplate
Awesome React Redux Workflow Boilerplate with Webpack 4
Stars: ✭ 307 (-61.58%)
Mutual labels:  jest, redux-saga
Webpack React Boilerplate
Minimal React 16 and Webpack 4 boilerplate with babel 7, using the new webpack-dev-server, react-hot-loader, CSS-Modules
Stars: ✭ 358 (-55.19%)
Mutual labels:  jest, react-boilerplate
coconat
πŸ₯ StarterKit Builder for rocket-speed App creation on πŸš€ React 17 + πŸ“™ Redux 4 + 🚠 Router 5 + πŸ“ͺ Webpack 5 + 🎳 Babel 7 + πŸ“œ TypeScript 4 + πŸš” Linters 23 + πŸ”₯ HMR 3
Stars: ✭ 95 (-88.11%)
Mutual labels:  redux-saga, jest
admin-template-for-react
🌏 Admin template for React, React Redux, Redux Saga, React Router, i18n and integrated OAuth login
Stars: ✭ 83 (-89.61%)
Mutual labels:  redux-saga, react-redux

This project is no longer maitained. If you've been using the boilerplate, it will work well and good. Latest version of redux and react hooks patterns are not used in the boilerplate and it is not recommended to start a new project with this boilerplate in 2020.

react redux boilerplate banner
A minimal, beginner friendly React-Redux boilerplate with all the industry best practices


Created by Dinesh Pandiyan

Why? start with why

The whole React community knows and will unanimously agree that react-boilerplate is the ultimate starter template for kickstarting a React project. It's setup with all the industry best practices and standards. But it also has a lot more than what you just need to start a react-redux app. It took me quite some time to get my head around what was happening in the codebase and it's clearly not for starters. They quote this right in their readme,

Please note that this boilerplate is production-ready and not meant for beginners! If you're just starting out with react or redux, please refer to https://github.com/petehunt/react-howto instead. If you want a solid, battle-tested base to build your next product upon and have some experience with react, this is the perfect start for you.

So it involves a lot of additional learning curve to get started with react-boilerplate. That's why I forked it, stripped it down and made this leaner, beginner friendly boilerplate without all the additional complexity.

Features

This boilerplate features all the latest tools and practices in the industry.

  • React.js - React 16✨, React Router 5
  • Redux.js - Redux saga and Reselect
  • Babel - ES6, ESNext, Airbnb and React/Recommended config
  • Webpack - Webpack 4✨, Hot Reloading, Code Splitting, Optimized Prod Build and more
  • Test - Jest with Enzyme
  • Lint - ESlint
  • Styles - SCSS Styling

Here are a few highlights to look out for in this boilerplate

Instant feedback
Enjoy the best DX (Developer eXperience) and code your app at the speed of thought! Your saved changes to the CSS and JS are reflected instantaneously without refreshing the page. Preserve application state even when you update something in the underlying code!
Next generation JavaScript
Use template strings, object destructuring, arrow functions, JSX syntax and more, today.
Component Specific Styles
Separate styles for each component. Style in the good old scss way but still keep it abstracted for each component.
Industry-standard routing
It's natural to want to add pages (e.g. `/about`) to your application, and routing makes this possible.
Predictable state management
Unidirectional data flow allows for change logging and time travel debugging.
SEO
We support SEO (document head tags management) for search engines that support indexing of JavaScript content. (eg. Google)

But wait... there's more!

  • The best test setup: Automatically guarantee code quality and non-breaking changes. (Seen a react app with 99% test coverage before?)
  • The fastest fonts: Say goodbye to vacant text.
  • Stay fast: Profile your app's performance from the comfort of your command line!
  • Catch problems: TravisCI setup included by default, so your tests get run automatically on each code push.

Quick start

  1. Clone this repo using git clone https://github.com/flexdinesh/react-redux-boilerplate.git
  2. Move to the appropriate directory: cd react-redux-boilerplate.
  3. Run yarn or npm install to install dependencies.
  4. Run npm start to see the example app at http://localhost:3000.

Now you're ready build your beautiful React Application!

Info

These are the things I stripped out from react-boilerplate - github project rules, ngrok tunneling, shjs, service worker, webpack dll plugin, i18n, styled-components, code generators and a few more.

License

MIT license, Copyright (c) 2018 Dinesh Pandiyan.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].