@snooful/settings-base

A base for Snooful's settings storage options.

Usage no npm install needed!

<script type="module">
  import snoofulSettingsBase from 'https://cdn.skypack.dev/@snooful/settings-base';
</script>

README

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