Skip to content
This repository has been archived by the owner on Nov 9, 2019. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MrEfrem committed Nov 30, 2016
1 parent d7dde3c commit 4743abe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Redux-fly
The library is focused on to providing simple API for:
* Reducers registration at any time to any place in store of Redux.
* Fast creation and mutation of component state (similar to local state) which is saved in store of Redux.

This API allow you to creation of reused components, organization effective code splitting and reducing Redux boilerplate.
* Simple creation and mutation of component state, similar to local state, which is stored in store of Redux.
* Creation of reused components which store own state in store of Redux.

[![Build Status](https://travis-ci.org/MrEfrem/redux-fly.svg?branch=master)](https://travis-ci.org/MrEfrem/redux-fly)

Expand Down Expand Up @@ -54,7 +53,7 @@ import { createReducer, getState } from 'redux-fly';
import { MENU_OPEN } from './Menu'; // Action of other component

// Type of window closing action (other components might listen in reducers)
export const actionPrivateCloseModal = (actionPrefix) => `${actionPrefix}PRIVATE-CLOSE-MODAL`;
export const actionPrivateCloseModal = (actionPrefix) => `${actionPrefix}@@PRIVATE-CLOSE-MODAL`;

// To open a modal is public action creator (other components might control the state)
export const openModal = (actionPrefix) => ({
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "redux-fly",
"version": "0.1.0",
"description": "Reduce Redux boilerplate",
"version": "0.1.1",
"description": "Rapid React + Redux development",
"browser": "dist/redux-fly.js",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down

0 comments on commit 4743abe

Please sign in to comment.