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

updatable

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

updatable

Updatable data type with listeners

  • 1.0.0
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

Updatable

Updatable javascript object with listeners

Install

TODO: Update with npm package registry

Usage

Initialize your Updatable object
const updatable = new Updatable();
const updatable = new Updatable('foo');
const updatable = new Updatable('foo', function(newValue) {
  console.log('Updated value:', newValue); // This will print the updated value
});
Add listeners
updatable.addListener(function(newValue) {
  // newValue will have the new value once the object is updated
});
Update value
updatable.update('bar');

This will call the listeners

Set listener

You can also set a completely new listener, discarding all previous listeners

updatable.setListener(function(newValue) { // This will also remove all previous listeners from the updatable object
  // newValue will have the new value once the object is updated
});

Keywords

FAQs

Package last updated on 14 Sep 2017

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