Popularity
9.5
Stable
Activity
0.0
Stable
10,406
315
2,356

Programming language: JavaScript
License: ISC License
Tags: Code Design     Boilerplate    
Latest version: v3.0.1

react-redux-starter-kit alternatives and similar libraries

Based on the "Boilerplate" category.
Alternatively, view react-redux-starter-kit alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-redux-starter-kit or a related project?

Add another 'Boilerplate' Library

README

Deprecation Warning

This project was started at the advent of the Redux ecosystem, and was intended to help users get up and running quickly. Since then, tooling and best practices have evolved tremendously. In order to get the most modern experience possible, I recommend checking out something like create-react-app which is supported by many core React and Redux developers.

You are welcome to use this project if it is a better fit for your needs, but if you are brand new to the ecosystem I highly recommend checking out something that has received more recent updates.

Thank you to everyone who made this project possible over the past year(s).

React Redux Starter Kit

Build Status dependencies devDependency Status js-standard-style

This starter kit is designed to get you up and running with a bunch of awesome front-end technologies.

The primary goal of this project is to provide a stable foundation upon which to build modern web appliications. Its purpose is not to dictate your project structure or to demonstrate a complete real-world application, but to provide a set of tools intended to make front-end development robust, easy, and, most importantly, fun. Check out the full feature list below!

Finally, This project wouldn't be possible without the help of our many contributors. What you see today is the product of hundreds changes made to keep up with an ever-evolving ecosystem. Thank you for all of your help.

Table of Contents

  1. Requirements
  2. Installation
  3. Running the Project
  4. Project Structure
  5. Live Development
  6. Routing
  7. Testing
  8. Building for Production
  9. Deployment
  10. Thank You

Requirements

  • node ^5.0.0
  • yarn ^0.23.0 or npm ^3.0.0

Installation

After confirming that your environment meets the above requirements, you can create a new project based on react-redux-starter-kit by doing the following:

$ git clone https://github.com/davezuko/react-redux-starter-kit.git <my-project-name>
$ cd <my-project-name>

When that's done, install the project dependencies. It is recommended that you use Yarn for deterministic dependency management, but npm install will suffice.

$ yarn  # Install project dependencies (or `npm install`)

Running the Project

After completing the installation step, you're ready to start the project!

$ yarn start  # Start the development server (or `npm start`)

While developing, you will probably rely mostly on yarn start; however, there are additional scripts at your disposal:

yarn <script> Description
start Serves your app at localhost:3000
build Builds the application to ./dist
test Runs unit tests with Karma. See testing
test:watch Runs test in watch mode to re-run tests when changed
lint Lints the project for potential errors
lint:fix Lints the project and fixes all correctable errors

Project Structure

The project structure presented in this boilerplate is fractal, where functionality is grouped primarily by feature rather than file type. This structure is only meant to serve as a guide, it is by no means prescriptive. That said, it aims to represent generally accepted guidelines and patterns for building scalable applications. If you wish to read more about this pattern, please check out this awesome writeup by Justin Greenberg.

.
โ”œโ”€โ”€ build                    # All build-related code
โ”œโ”€โ”€ public                   # Static public assets (not imported anywhere in source code)
โ”œโ”€โ”€ server                   # Express application that provides webpack middleware
โ”‚   โ””โ”€โ”€ main.js              # Server application entry point
โ”œโ”€โ”€ src                      # Application source code
โ”‚   โ”œโ”€โ”€ index.html           # Main HTML page container for app
โ”‚   โ”œโ”€โ”€ main.js              # Application bootstrap and rendering
โ”‚   โ”œโ”€โ”€ normalize.js         # Browser normalization and polyfills
โ”‚   โ”œโ”€โ”€ components           # Global Reusable Components
โ”‚   โ”œโ”€โ”€ containers           # Global Reusable Container Components
โ”‚   โ”œโ”€โ”€ layouts              # Components that dictate major page structure
โ”‚   โ”‚   โ””โ”€โ”€ PageLayout       # Global application layout in which to render routes
โ”‚   โ”œโ”€โ”€ routes               # Main route definitions and async split points
โ”‚   โ”‚   โ”œโ”€โ”€ index.js         # Bootstrap main application routes with store
โ”‚   โ”‚   โ”œโ”€โ”€ Home             # Fractal route
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ index.js     # Route definitions and async split points
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ assets       # Assets required to render components
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ components   # Presentational React Components
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ routes **    # Fractal sub-routes (** optional)
โ”‚   โ”‚   โ””โ”€โ”€ Counter          # Fractal route
โ”‚   โ”‚       โ”œโ”€โ”€ index.js     # Counter route definition
โ”‚   โ”‚       โ”œโ”€โ”€ container    # Connect components to actions and store
โ”‚   โ”‚       โ”œโ”€โ”€ modules      # Collections of reducers/constants/actions
โ”‚   โ”‚       โ””โ”€โ”€ routes **    # Fractal sub-routes (** optional)
โ”‚   โ”œโ”€โ”€ store                # Redux-specific pieces
โ”‚   โ”‚   โ”œโ”€โ”€ createStore.js   # Create and instrument redux store
โ”‚   โ”‚   โ””โ”€โ”€ reducers.js      # Reducer registry and injection
โ”‚   โ””โ”€โ”€ styles               # Application-wide styles (generally settings)
โ””โ”€โ”€ tests                    # Unit tests

Live Development

Hot Reloading

Hot reloading is enabled by default when the application is running in development mode (yarn start). This feature is implemented with webpack's Hot Module Replacement capabilities, where code updates can be injected to the application while it's running, no full reload required. Here's how it works:

  • For JavaScript modules, a code change will trigger the application to re-render from the top of the tree. Global state is preserved (i.e. redux), but any local component state is reset. This differs from React Hot Loader, but we've found that performing a full re-render helps avoid subtle bugs caused by RHL patching.

  • For Sass, any change will update the styles in realtime, no additional configuration or reload needed.

Redux DevTools

We recommend using the Redux DevTools Chrome Extension. Using the chrome extension allows your monitors to run on a separate thread and affords better performance and functionality. It comes with several of the most popular monitors, is easy to configure, filters actions, and doesn't require installing any packages in your project.

However, it's easy to bundle these developer tools locally should you choose to do so. First, grab the packages from npm:

yarn add --dev redux-devtools redux-devtools-log-monitor redux-devtools-dock-monitor

Then follow the manual integration walkthrough.

Routing

We use react-router route definitions (<route>/index.js) to define units of logic within our application. See the project structure section for more information.

Testing

To add a unit test, create a .spec.js file anywhere inside of ./tests. Karma and webpack will automatically find these files, and Mocha and Chai will be available within your test without the need to import them. Here are a few important plugins and packages available to you during testing:

dirty-chai

Some of the assertions available from [chai](chaijs.com) use magical getters. These are problematic for a few reasons:

1) If you mistype a property name (e.g. expect(false).to.be.tru) then the expression evaluates to undefined, the magical getter on the true is never run, and so your test silently passes. 2) By default, linters don't understand them and therefore mark them as unused expressions, which can be annoying.

Dirty Chai fixes this by converting these getters into callable functions. This way, if mistype an assertion, our attempt to invoke it will throw due to the property being undefined.

// This silently passes because the getter on `true` is never invoked!
it('should be true', () => {
  expect(false).to.be.tru // evalutes to undefined :(
})

// Much better! Our assertion is invalid, so it throws rather than implicitly passing.
it('should be true', () => {
  expect(false).to.be.tru() // `tru` is not defined!
})

Building for Production

Deployment

Out of the box, this starter kit is deployable by serving the ./dist folder generated by yarn build. This project does not concern itself with the details of server-side rendering or API structure, since that demands a more opinionated structure that makes it difficult to extend the starter kit. The simplest deployment strategy is a static deployment.

Static Deployments

Serve the application with a web server such as nginx by pointing it at your ./dist folder. Make sure to direct incoming route requests to the root ./dist/index.html file so that the client application will be loaded; react-router will take care of the rest. If you are unsure of how to do this, you might find this documentation helpful. The Express server that comes with the starter kit is able to be extended to serve as an API and more, but is not required for a static deployment.

Thank You

This project wouldn't be possible without help from the community, so I'd like to highlight some of its biggest contributors. Thank you all for your hard work, you've made my life a lot easier and taught me a lot in the process.

  • Justin Greenberg - For all of your PR's, getting us to Babel 6, and constant work improving our patterns.
  • Roman Pearah - For your bug reports, help in triaging issues, and PR contributions.
  • Spencer Dixon - For your creation of redux-cli.
  • Jonas Matser - For your help in triaging issues and unending support in our Gitter channel.

And to everyone else who has contributed, even if you are not listed here your work is appreciated.