Skip to content

A base for Snooful's storage options.

License

Notifications You must be signed in to change notification settings

Snooful/Settings-Base

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Settings Base

GitHub release npm Travis (.com)

The main package that all storage options extend.

Installation

This package is available on NPM under the organization's scope:

npm install @snooful/settings-base

Use it like so:

const { debug, BSM } = require("@snooful/settings-base");

module.exports = class extends BSM {
	constructor() {
		super();
		debug("this is our special little settings manager!");
	}
};