Skip to content

CuityMiko/react-redux-saga-antd-starter

 
 

Repository files navigation

react-redux-saga-antd-starter

A React + Redux + Redux Actions + Redux Saga + Ant-Design frontend boilerplate.

Setup

# install dependencies
yarn (or npm install)

# serve with hot reload at localhost:3000
yarn start (or npm start)

Scripts

  • yarn start (or npm start): Starts the application on development mode
  • yarn lint (or npm run lint): Run lint once
  • yarn lint:watch (or npm run lint:watch): Run tests in lint mode
  • yarn build (or npm run build): Build project to production
  • yarn clean (or npm run clean): Run clean dist

Dependences

  • Ant-Design
  • Babel
  • ESLint (Airbnb)
  • LESS
  • PostCSS
  • React
  • React Router
  • React Router Redux
  • Redux
  • Redux Actions
  • Redux Saga

Generated File Tree

.
├── src                            # Source directory
    ├── store                      # Schems and flux data
        ├── actions
        ├── sagas
        ├── configure-store.js        
        └── reducers.js
    ├── views                      # UI components
        ├── components
        └── containers
    ├── www
        └── index.html             # HTML for entry file
    ├── application.js             # Provider file
    ├── constants.js               # Constants
    ├── index.js                   # Entry file
    └── theme.less                 # Theme configuration for Antd
├── .editorconfig
├── .eslintrc                      # Eslint config
├── .gitignore
├── .babelrc                       # Babel config
└── package.json

Open http://localhost:3000 in your browser.

About

🐜 A React + Redux + Redux Actions + Redux Saga + Ant-Design frontend boilerplate

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.3%
  • HTML 13.4%
  • CSS 1.3%