0.0.4 • Published 6 years ago

goble v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

goble

A global store.

Usage

Setting a global variable.

var goble = require('goble');

goble.set('foo', 'bar');

Getting a global variable

// print 'bar' to console
console.log(goble.get('foo'));

Clearing all global variables

goble.clear();

// print null
console.log(goble.get('foo'));

Testing

goble uses the jest framework. To execute all tests, run npm test

Documentation

Install jsdoc globally using npm install -g jsdoc or locally using npm install --save-dev jsdoc.

Run npm run jsdoc to generate documentation.

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago