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

v-store

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

v-store

A javascript key value store with pub-sub.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

v-store

A javascript key value store with pub-sub.

Install

npm install v-store --save

Store

// Create your store (books.js)

var Books = require('v-store');

module.exports = Books;

Example


// Usage

var store = require('./books'); // Path to your store (books.js)

var print = function (newChapter, oldChapter) {
    console.log('From: ', oldChapter, ' to: ', newChapter);
};

store.set('name', 'A Song of ice and fire');
store.set('chapter', 1);

// Subscriber to whenever the value of chapter changes.
store.subscribe('chapter', print);

// Set the value and trigger any subscribers.
store.set('chapter', 2); // Calls print and logs => From: 1 to: 2

// Remove print subscriber. 
// If the second argument is not specified then all subscribers are removed.
store.unsubscribe('chapter', print);

// Reset the store
store.flush();

Keywords

FAQs

Package last updated on 30 Jun 2016

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