npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sofaking

v4.2.0

Published

Bucket configuration and connection management for Couchbase.

Downloads

34

Readme

Sofaking

Bucket configuration and connection management for Couchbase.

Manages the lifetime and configuration of couchbase bucket instances. All buckets are wrapped using couchbase-promises to provide full A+ promises support.

Configuration

The sofaking module internally uses kibbutz for configuration loading and aggregation. Configuration providers must return objects with the following schema:

  • clusters: (required) an object that contains a listing of Couchbase clusters, and their configuration. Each key in the clusters object corresponds to a single cluster configuration, and is an object that can contain the following keys:

    • cnstr: (required) a connection string to the cluster.

    • options: (optional) an object that contains connection options. This object can contain the keys:

      • certpath: (optional) the path to the certificate to use for SSL connections.
    • buckets: (required) an object who's keys reference a bucket name found on the cluster. Each key is an object that can contain the keys:

      • password: (optional) the password to use to connect to the bucket.
  • repositories: (required) an object whose keys semantically align to the repositories in the project. Each repository key is an object that contains the keys:

    • cluster: (required) the name of the cluster the repository should use. The name should correspond to to a key found in clusters.

    • bucket: (required) the name of the bucket the repository should use. The bucket name should correspond to a key in the object referenced by cluster.

Example

The following example uses kibbutz-rc to load configuration using rc

$ npm install sofaking -S

Create a .usersrc file:

{
  "clusters": {
    "primary": {
      "cnstr": "couchbase://127.0.0.1",
      "options": { },
      "buckets": {
        "default": {
          "password": "oU812?"
        }
      }
    }
  },
  "repositories": {
    "users": {
      "cluster": "primary",
      "bucket": "default"
    }
  }
}

Create a users-repository.js file:

const Sofaking = require('sofaking');
const RcProvider = require('kibbutz-rc');

const provider = new RcProvider({
  appName: 'users'
});

const sofa = new Sofaking();
sofa.load([provider]);

const me = new WeakMap();

class UsersRepository {
  constructor(bucket) {
    // support DI
    me.set(this, {
      bucket: bucket || sofa.getBucket('users')
    });
  }

  get(id) {
    return me.get(this).bucket.getAsync('user_' + id);
  }

  insert(user) {
    return me.get(this).bucket.insertAsync(user.id, user);
  }

  destroy(id) {
    return me.get(this).bucket.removeAsync(id);
  }
}

module.exports = UsersRepository;

Repositories

A repository is an abstract that represents all of the persistence logic for a given domain entity or namespace. The idea behind sofaking is to provide a simple way of ensuring applications contain one open connection per Couchbase bucket, while allowing multiple conceptual repositories to use common buckets. This has the added benefit of completing separating bucket names, and other deployment concerns, from application code.

API

Constructors

new Sofaking(couchbase)

Creates a new instance of Sofaking. The constructor takes a single, optional argument that allows you to specify what couchbase module to use internally. This is especially useful in unit tests when you want to use mocks.

Properties

Sofaking.errors

A dictionary of custom errors thrown by sofaking. Errors include:

  • UnknownRepositoryError: thrown when an unknown repository is requested with Sofaking.getBucket().

  • InvalidClusterMappingError: thrown when a repository is configured to reference an unknown Couchbase cluster.

  • InvalidBucketMappingError: thrown a repository is configured to reference an unknown Couchbase bucket.

  • codes: an object containing all of the Couchbase error codes. This is the same object as the couchbase-promises' error property.

Sofaking.shared

Instances of Sofaking do not share Couchbase cluster and bucket instances. If you have a need to share instances across multiple modules, set the shared property to an instance of Sofaking. This static property is, by default, set to null.

Sofaking.prototype.clusters

A Map of configured clusters. Values for entries are objects with the following keys:

  • name: the name of the cluster as it is in configuration. This will be the same value as the key for the entry.

  • cluster: the Couchbase Cluster instance.

  • buckets: a Map of open buckets. Entries correspond to configuration. Values for entries are objects with the following keys:

    • name: the name of the bucket. This will be the same value as the key for the entry, as well as the name of the bucket in the Couchbase cluster.

    • bucket: the open Couchbase Bucket instance.

Sofaking.prototype.repositories

A Map of configured repositories. Values are instances of their mapped Couchbase Bucket instance.

Methods

Sofaking.prototype.add(fragments | ...fragments)

Adds Couchbase cluster, bucket, and repository mappings from configuration fragments. The add() method returns the same instance of Sofaking so that calls can be chained together. Parameters:

  • fragments: (required) an array of configuration fragments. All fragments are merged, and new cluster, bucket, and repository mappings are opened and added as necessary.

...or...

  • ...fragments: (required) n-number of configuration fragments provided as separate arguments. All fragments are merged, and new cluster, bucket, and repository mappings are opened and added as necessary.

The merging of configuration fragments uses the same Kibbutz-style merge logic as the load() method.

Sofaking.prototype.getBucket(repository)

Returns the Couchbase bucket mapped to the given repository name.

Sofaking.prototype.getBucketName(repository)

Returns the name of the bucket mapped to the given repository name.

Sofaking.prototype.load(providers [, value] [, callback])

Used to load configuration. The load() method returns the same instance of Sofaking so that calls can be chained together. Parameters:

  • providers: (required) an array of Kibbutz-styled configuration providers.

  • value: (optional) the base configuration object to pass to the Kibbutz constructor.

  • callback: (optional) a Node.js callback function that is called when all configuration fragments have been loaded, aggregated, and subsequently mapped to Couchbase Bucket instances.

Sofaking.prototype.on(eventName, listener)

Instances of Sofaking are also EventEmitters. The on() method maps listeners to specific events. The on() method returns the same isntance of Sofaking so that calls can be chained together. Parameters:

  • eventName: (required) a string that maps the lister to its target event.

  • listener: (required) a function used to handle events. The signature for the function depends on the event.

Valid events include:

  • config: raised when the internal Kibbutz instance loads configuration fragments. This event is exactly the same as Kibbutz's' config event.

  • done: raised when the internal Kibbutz instance completes loading all configuration fragments from all providers given to the load() method. This event is exactly the same as Kibbutz's' done event.

  • bucket: raised when Couchbase Bucket instances are opened. Listeners should take a single parameter. Passed arguments are objects with following keys:

    • name: the name of the bucket.

    • bucket: the Couchbase Bucket instance.

  • error: raised when an internal error is encountered. Listeners should take a single parameter, which is the error that was thrown internally.