2.0.0 • Published 4 years ago

@snooful/settings-base v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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!");
	}
};