Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redux-zero

Package Overview
Dependencies
Maintainers
2
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-zero - npm Package Versions

1
7

4.8.0

Diff

Changelog

Source

4.8.0

  • Add bindActions export
import { bindActions } from "redux-zero/utils";
matheusml
published 4.7.0 •

Changelog

Source

4.7.0

  • Add Vue.js bindings
matheusml
published 4.6.1 •

matheusml
published 4.6.0 •

Changelog

Source

4.6.0

  • Adds middleware support:
// a middleware
const logger = store => next => action => {
  console.log("current state", store.getState());
  return next(action);
};

// compose middlewares
const middlewares = applyMiddleware(logger, anotherMiddleware);

const store = createStore({}, middlewares);
matheusml
published 4.5.2 •

Changelog

Source

4.5.2

  • Fixes bug in which ownProps were not being passed as the second argument to mapToProps inside a connect HOC
matheusml
published 4.5.1 •

Changelog

Source

4.5.1

  • Shallow clone mutated object and array in Svelte bindig
concretesolutions
published 4.5.0 •

Changelog

Source

4.5.0

  • Adds Thennable actions. Now we can declare actions as so:
const mapActions = ({ setState }) => ({
  getTodos() {
    setState({ loading: true });

    return client
      .get("/todos")
      .then(payload => ({ payload, loading: false }))
      .catch(error => ({ error, loading: false }));
  }
});
matheusml
published 4.4.3 •

Changelog

Source

4.4.3

  • Removing peerDependencies from package.json
matheusml
published 4.4.2 •

Changelog

Source

4.4.2

  • Fix typings, remove unsubscribe from Store interface since isn't used

[info] Using redux-zero along with TypeScript gives an error when implementing: <Provider store={store}><Whatever/></Provider> due to the actual store object and the expected attribute differ.

  • Added Store interface as signature for createStore function.
concretesolutions
published 4.4.1 •

Changelog

Source

4.4.1

  • Fixes Svelte connect function date object change detection
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc