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

modella-sublevel

v1.0.0-beta.2

Published

Modella plugin to attach a model to a `sublevel`-based backing store, with optional secondary indexing

Downloads

5

Readme

modella-sublevel

Modella plugin to attach a model to a sublevel-based backing store, with optional secondary indexing.

Usage

var sublevel = require('modella-sublevel')

var MyModel = model('MyModel')
  .use(sublevel)

  // primary key field required (defaults to `id` or `_id` attr per modella API
  .attr('mykey', {
    primaryKey: true
  })

  // unindexed attribute
  .attr('somefield', {
    defaultValue: 'xxx'
  })

  // explicitly indexed field
  .attr('indexedfield', {
    index: true
  })

  // unique fields are implicitly implicitly indexed to verify uniqueness
  .attr('uniquefield', {
    unique: true
  })

// model initialized, but saving instances will throw until store is attached
var model = new Model({
  mykey: 'a',

  // unique fields are inherently `required: true`
  uniquefield: 'foo'
})

model.save(function(err, model) {
  err.message === 'No store available'
})

Attaching a store

// some time later, assuming `db` is in scope...
var store = db.sublevel('MyModel')

// attach new sublevel as backing store for our model
MyModel.attach(store)

// now we can save model instances
model.save(function (err, model_) {
  // no error this time
  err == null

  // callback is invoked with the same instance of model
  model_ === model
})

Model-aware store methods

// the backing store is made available on the `store` key
MyModel.store === store

// store methods are overriden to do model creation/validation
myStore.put('b', {
  // id will be set to `primaryKey` field defined by model
  uniquefield: 'bar'
}, function (err, record) {
  // `store.put` overridden to return created JSON record
  record.key === 'a'

  // this will include any attributes generated by model instantiation
  record.somefield === 'xxx'
})

Store-aware model methods

// modella API extended with some static convenience methods
MyModel.create({
  mykey: 'c',
  uniquefield: 'baz'
}).save(err, model) {
  // again, result of save is a model instance, which we can manipulate
  model.somefield('yyy')

  model.save(function (err) {
    // our changes are now persisted
  })
})

// convenient static methods are available for interfacing with the store
MyModel.add({
  // ensures key is new
  mykey: 'd',
  uniquefield: 'quux'
})

// query by primary key (if `createReadStream` available on sublevel)
Model.query({ gt: 'b' }).on('data', function (model) {
  // invoked with model instances
  model.primary() >= 'b'
})

// query on a secondary index explicitly (if supported by sublevel)
Model.query.uniquefield({ gt: 'bar' }).on('data', function (model) {
  model.uniquefield() > 'bar'
})

// observe changes on an indexed attribute (if `createLiveStream` avaialable)
Model.tail.indexedfield().on('data', function (data) {
  if (data.type !== 'del') {
    // data.model.get('indexedfield')
  }
})

Detaching a store

The attach method can be called without a store reference to detach store from model:

OtherModel.attach()
OtherModel.store === undefined

When detaching, any methods overwritten on the backing store instance will be replaced with their original versions.