Gigacore / React-Redux-Sass-Starter

Everything you need to get started with a basic React application

Home Page:https://gigacore.in/demos/react-redux-demo/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logos

React, Redux & Sass Starter

A simple and quick way to get you going with developing React applications with Redux and Sass.

Comes with pre-configured Webpack for bundling your application to help save time in setting up your project. Keeps CSS out of JavaScript to maintain separation of concerns. Redux takes care of State Management. If you are looking for CSS-in-JS approach, this starter pack is not for you.

Demo: https://www.gigacore.in/demos/react-redux-demo/

For a complex example with Async actions, take a look at: react-weather-forecast

Components πŸ”© Styles 🎨 Action! 🎬

With all necessary tools in place, all you need to do is start creating React Components, style them and optionally use Redux for the State management. It is recommended that you use Redux if the applications you are building require interactions between multiple components or that requires pulling data from external source.

All the required code (JS + Sass) goes inside the src folder. Webpack will compile, bundle and output in the public folder, which you can upload/deploy to the root directory of your web server to publish your app!

Get started!

git clone
cd React-Redux-Sass-Starter
npm i

Start the dev server:


npm run start:dev

Build:


npm run build

Note:

  • Changes made to your CSS / JS triggers a full page auto-reload.
  • Running a build writes the bundle.js and bundle.css to the /public/dist/ directory.

Pre-configured tools and plugins

Codebase overview.

/
β”œβ”€ public/
|  β”œβ”€ dist/
|  |  β”œβ”€ bundle.css           # CSS that's generated from SASS
|  |  β”œβ”€ bundle.js            # Contains scripts of components & vendor(s).
|  β”œβ”€ index.html              # Contains root element to mount your app.
└─ src/
   β”œβ”€ actions/                # Create actions here.
   |  β”œβ”€ counterActions.js
   β”œβ”€ components/             # Create components here
   |  β”œβ”€ Controls.js
   |  β”œβ”€ Counter.js
   |─ containers/             # Containers bridge Components with the State.
   |  β”œβ”€ Controls.js
   |  β”œβ”€ Counter.js
   β”œβ”€ constants/              # Define action types here.
   |  β”œβ”€ ActionTypes.js
   β”œβ”€ reducers/               # Create reducers here.
   |  β”œβ”€ counter.js
   |  β”œβ”€ index.js             # Combine your reducers here.
   β”œβ”€ styles/                 # All styling goes here.
   |  β”œβ”€ main.scss
   β”œβ”€ App.js                  # Include your main component(s).
   β”œβ”€ index.js                # Passes state to App. Renders markup to DOM.
   └─ store.js                # Creates and exports store.

Learn

This starter kit assumes, you are familiar with JavaScript (ES6). If you are new to this stack, here are some resources to help you get started with:

React - Quick Start | Start Learning React | React in 8-minutes

Redux - Basics | An Introduction | React with Redux

Sass - Sass Guide

The MIT License (MIT)

MIT Β© 2017 Santhosh Sundar

About

Everything you need to get started with a basic React application

https://gigacore.in/demos/react-redux-demo/

License:MIT License


Languages

Language:JavaScript 73.7%Language:CSS 21.2%Language:HTML 5.1%