npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

easy-react-redux

v0.1.0

Published

Yet another react redux integration only with stateless function components

Downloads

5

Readme

easy-react-redux

Build Status npm version

Yet another react redux integration only with stateless function components.

Background

Some people likes writing only pure functions in React and it's also known as stateless function components. Redux helps writing components as stateless functions because it is a single store to hold the entire application state. Technically, one doesn't need to use component level state any more.

There is an official React binding for Redux called React Redux. The connect method is pretty powerful and carefully tuned for performance. As its major focus is performance and scalability, however, it's not very intuitive for beginners. In the tutorial, the simple usage of Redux without react-redux is introduced, which is good for learning.

As the official binding is not necessary to use Redux with React, this project is to seek an alternative. The goal of this project is to provide yet another binding for beginners and developers who develop relatively small apps which don't require connect-level tuning.

Install

npm install easy-react-redux --save

Usage

Baseline usage

import { subscribe } from 'easy-react-redux';

const Hello = subscribe()(({ name, store }) => (
  <div>
    <div>Hello {name}!</div>
    <p>{store.getState().message}</p>
  </div>
));

const App = ({ store }) => (<Hello name="world" store={store} />);

const store = createStore(reducer, initialState);

ReactDOM.render(<App store={store} />, document.getElementById('app'));

When the application state is changed, it will only re-render Hello component.

Limiting subscription

import { subscribeWithKey } from 'easy-react-redux';
const Hello = subscribeWithKey('message')(({ name, store }) => (
  <div>
    <div>Hello {name}!</div>
    <p>{store.getState().message}</p>
  </div>
));

This will only re-render the component if message in the state changes.

More

There're some other methods: subscribeWithPath, subscribeWithoutKey, and subscribeWithCustomKey which is not simple anymore.

The good thing is that there's no hack and the source code is simple, and hence predictable. Please take a look at the code to get more insight.

If you think passing store in the props all the way down is annoying, you can use Provider from react-redux and passes store in the context. See the example folder for more information.

Example

The example folder contains a working example. You can run it with:

PORT=8080 npm run example

and open http://localhost:8080 in your web browser.