• This repository has been archived on 11/Jun/2024
  • Stars
    star
    560
  • Rank 79,541 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 9 years ago
  • Updated almost 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A starter project for modern React apps with Redux

React + Redux w/ ES6 Starter Project

🎉 A Completely updated version of my initial boilerplate 🚀

Note: If you still want to use a previous version, please checkout old-original-structure branch.

A boilerplate using the power and simplicity of React, Redux, Webpack 2 + HMR, and ES6 + JSX via Babel. Includes Webpack's Tree Shaking configuration. It's suitable for scalable applications and organized using the custom variation of the Ducks pattern — approach when each module's entry file (feature-name.js) contains all of its related constants, actions/action creators, selectors and its reducer.

The provided boilerplate is powered by the following technology stack:

  • React and JSX — a virtual DOM JavaScript library for rendering UI. It's about rendering view as a function of state, making JavaScript-driven UI declarative the way HTML is declarative.
  • Redux — an incredibly simple way of modelling your data app state, with great community support
  • Webpack 2 and dev middleware — client-side module builder and module loader
  • React Hot Loader 3 — combines the best of React Hot Loader and React Transform and fixes some long-standing issues
  • React Router v3 — to allow dynamic routing
  • React Router Redux — simple bindings to keep React Router and Redux in sync
  • Reselect — provides a way to access Redux state in components and build composable selectors that are automatically memoized
  • Flow — static type checker for JavaScript aimed at catching common bugs in JavaScript programs. The flow type annotations get ripped out of the source by the webpack build step. You have no obligation to use flow within your code and can even uninstall the dependency (flow-bin) without breaking the project.
  • npm — package manager and task runner
  • Babel 6 — transpiler from ES6 / JSX to ES5
  • PostCSS — ecosystem of custom plugins and tools aimed at transforming extended syntaxes and features into modern, browser-friendly CSS
  • CSS Modules — guarantee that all the styles for a single component, designed to fix the problem of the global scope in CSS
  • Redux DevTools — a live-editing environment for your Redux apps (and as a browser extension)
  • webpack-dashboard — CLI dashboard for your Webpack dev server
  • React Intl — internationalization for React projects
  • ESLint — reporter for syntax and style issues
  • eslint-plugin-react & eslint-plugin-flowtype — additional React/Flow type specific linting rules for ESLint
  • Sass — compiler of CSS styles with variables, mixins, and more
  • Mocha — well-known and flexible test framework that you can use to run your JavaScript tests on the server or in the browser
  • Enzyme — makes unit testing React components an absolute pleasure
  • Chai — BDD assertion library that works along with Mocha
  • Sentry — real-time error tracking for your app

Getting Started

Prerequisites

Support for Node.js > 5

Installation

$ git clone https://github.com/nicksp/redux-webpack-es6-boilerplate.git app-name
$ cd app-name
$ npm install

White Label It

Development

There are two ways in which you can build and run the web app:

  • Build once for (ready for Production):

    • $ npm run build
    • $ npm run build:serve

    The last command will boot up HTTP server on 3003 port and serve build/client directory in a default browser

  • Hot reloading via webpack middlewares:

    • $ npm start
    • Point your browser to http://localhost:3000/, page hot reloads automatically when there are changes

Testing

(TBD)

To execute all unit tests, use:

$ npm run test

To run unit tests continuously during development (watch tests), use:

$ npm run test:watch

Expose App on Your Local Dev Machine

Assign yourself a unique publicly accessible url that will proxy all requests to your locally running webserver.

$ npm install -g localtunnel
$ npm start
$ npm run tunnel # run in a new tab

You will receive a url, for example https://tbst.localtunnel.me, that you can share with anyone for as long as your local instance of lt remains active. Any requests will be routed to your local service at the specified port.

Error Tracking and Insights with Sentry

In order to get info on errors that happened in production, we integrate Sentry into our application to track errors and get context on what happened.

To use it on your side, configure it first:

  • Create account at https://sentry.io/signup/
  • Add new project for your app on Sentry website
  • In /src/client/assets/javascripts/app/config.js file assign SENTRY_KEY and SENTRY_APP constants values that you got after adding a new project
  • Don't forget to define Allowed Domains section under your Project Settings on Sentry website to track errors from required domains

Debugging

For debugging purposes please use:

FAQ

What's this for?

This starter kit implements best practices like testing (unit testing), minification, bundling, and so on. It saves you from the long, painful process of wiring it all together into an automated dev environment and build process.

What's happening under the hood when I run npm start?

Webpack serves your app in memory when you run npm start. No physical files are written. However, the web root is /src, so you can reference files under /src in index.html. When the app is built using npm run build, physical files are written to /build folder and the app is served from /build.

How is Sass being processed?

We're handling it differently in DEV vs PROD.

When you run npm start:

  1. The sass-loader compiles Sass into CSS
  2. Webpack bundles the compiled CSS into app.js. Sounds weird, but it works!
  3. app.js contains code that loads styles into the <head> section of index.html via JavaScript. This is why there is no stylesheet reference in index.html. In fact, if you disable JavaScript in your browser, you'll see the styles don't load either.

The approach above supports hot reloading, which is great for development. However, it also create a flash of unstyled content on load because you have to wait for the JavaScript to parse and load styles before they're applied. So for the production build, we use a different approach:

When you run npm run build:

  1. The sass-loader compiles Sass into CSS
  2. The extract-text-webpack-plugin extracts the compiled Sass into app.css
  3. buildHtml.js adds a reference to the stylesheet to the head of index.html.

How do I deploy this?

npm run build. This will prepare and build the project for production use. It does the following:

  • Minifies all JS and CSS
  • Inline base64 URLs for images and fonts if their size is less than specified limit
  • Sets NODE_ENV to production so that React is built in production mode
  • Places the resulting built project files into /build directory. (This is the folder you'll expose to the world).

TODO

  • Watch index.html for changes
  • Setup test environment for React components using Enzyme, Mocha and Karma
  • Add support for React Intl
  • Add support for dynamic routing (code splitting)
  • Update FAQ section to reflect latest greatest changes
  • Add more Flow type annotations incrementally to allow Flow to validate more code, and gradually increase Flow’s coverage of the codebase
  • Integrate Material Design or Bootstrap
  • Check if PostCSS integration works
  • Apply more best practices to how code is organized and written
  • Add section about available npm scripts
  • Any more ideas?

License

MIT License, 2016

Brought to you by Nick S. Plekhanov

More Repositories

1

dotfiles

My personal dotfiles: Zsh, Git, VSCode, WezTerm, etc.
Shell
347
star
2

mighty-react-snippets

Crafty React & Redux snippets for Atom Editor
CoffeeScript
18
star
3

til

Today I Learned — a collection of things I've learned in my day-to-day web development work.
6
star
4

js-design-patterns

JavaScript Design Patterns Collection
JavaScript
3
star
5

example-react-parcel

Just playing around with React and Parcel as bundler 📦🚀
HTML
3
star
6

react-webpack-typescript-babel-template

A starter template using Babel to build React (JSX) code written in TypeScript
TypeScript
2
star
7

webpack-typescript-babel-template

A starter template using Webpack and Babel to build TypeScript code
TypeScript
2
star
8

nikkhan.com

Nick's Homepage
JavaScript
2
star
9

react-geo-weather

Weather Forecast App with Geolocation
JavaScript
2
star
10

ecommerce-store

An online store application with React, Apollo, Node.js and GraphQL.
TypeScript
1
star
11

react-components

List of React components & libraries I use and recommend.
1
star
12

medium-lite-api-server

Node/Express REST API Server
JavaScript
1
star
13

typescript-node-starter

A minimal boilerplate for TypeScript and Node.js applications
JavaScript
1
star
14

handle-async-await-errors-express

An example of handling errors with async/await in Express
JavaScript
1
star
15

angular-ascii-warehouse

Sample warehouse Angular application
JavaScript
1
star
16

laterpaper

A RESTful web service to collect and read beautifully formatted articles from the internet.
JavaScript
1
star
17

typescript-babel-template

A starter template using Babel CLI to build TypeScript code
JavaScript
1
star
18

fe-codestyle

A set of style guides for my front-end code
JavaScript
1
star