🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
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
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
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

store

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