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

change-notifier

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

change-notifier

Dead-simple state notifier for React. Under 1kb. Inspired by Flutter.

  • 1.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

change-notifier

Actions Status

npm version

Dead-simple state notifier for React. Under 1kb. Inspired by (meaning ported from!) Flutter.

yarn add change-notifier

Inspiration

Made this to scratch a personal itch where I wanted to use EventEmitter as a lightweight state tool for React, to which tiny-emitter is an awesome package for React Native! However, hooks weren't built in.

While considering building a useTinyEmitter hook, I remembered that Flutter had a similar pattern that I really liked.

Example

import React from 'react';
import {
  ChangeNotifier,
  useChangeNotifier,
  ValueNotifier,
  useValueNotifier,
} from 'change-notifier';

class Timer extends ChangeNotifier {
  constructor() {
    setInterval(() => {
      this.notifyListeners();
    }, 1000);
  }
}

class TimerAlt extends ValueNotifier<number> {
  constructor() {
    super(Date.now());

    setInterval(() => {
      this.value = Date.now();
    }, 1000);
  }
}

const TIMER = new Timer();
const TIMER_ALT = new TimerAlt();

function App() {
  useChangeNotifier(TIMER);

  return (
    <>
      <div>The timestamp is:</div>
      <div>{Date.now()}</div>
    </>
  );
}

function AppAlt() {
  const now = useValueNotifier(TIMER_ALT);

  return (
    <>
      <div>The timestamp is:</div>
      <div>{now}</div>
    </>
  );
}

FAQs

Package last updated on 06 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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