Skip to content

maxmechanic/redux-fsa-linter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

redux-fsa-linter

npm package build status

Redux middleware that validates incoming actions with Flux Standard Action.

linting

Installation

npm install redux-fsa-linter --save-dev

Usage

import { createStore, applyMiddleware } from 'redux';
import thunk from 'redux-thunk';
import createLinter from 'redux-fsa-linter';

const linter = createLinter();

const createStoreWithMiddleware = applyMiddleware(
  thunk,
  linter
)(createStore);

The middleware will ignore anything passing through it that is not a plain object.

By default, the linter will alert the user of non-compliant actions by way of console warnings. Passing {strict: true} to the createLinter function will result in non-compliant actions throwing errors.

createLinter can also take an ignore function on the options object. This predicate is handed the incoming action, and the linter will ignore the action if the function returns a truthy value:

const ignore = ({ type }) => type === 'IGNORE_ME'

const createLinter({ ignore })

This may be useful if you are using third-party libraries that may dispatch non-FSA actions.

About

Redux middleware to lint for Flux Standard Actions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published