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

tracery

v1.0.3

Published

an object structure predicate builder (make functions to test an object's structure)

Downloads

12,991

Readme

tracery

an object structure predicate builder (make functions to test an object's structure)

Easily build functions to test properties of objects - useful for validation, verifying data integrity, and application-level schema checking.

Fun fact: tracery "is the stonework elements that support the glass in a Gothic window."

usage

Define a structure with an object mapping between property names and types. Types can be either JavaScript builtins or predicate (boolean-returning) functions - even another tracery function, for easy composition. This is very powerful and lets your describe very complex document structures easily.

    var tracery = require('tracery')
    var Tags = tracery([String])

    var Movie = tracery({
      title: String,
      director: String,
      year: Number,
      genre: String,
      tags: Tags
    })

    var Flavor = tracery({
      sour: Boolean,
      bitter: Boolean,
      sweet: Boolean,
      spicy: Boolean
    })

    var Document = tracery({
      id: String,
      movies: [Movie],
      flavors: tracery.Collection(Flavor)
    })

    var goodDoc = {
      id: 'doc123',
      movies: [{title: 'Born to be born', director: 'Ken Bobson', year: 1982, genre: 'Action', tags: ['cheesy']}],
      flavors: {
        'butter popcorn': {sour: false, bitter: false, sweet: false, spicy: false},
        'wasabi': {sour: false, bitter: false, sweet: false, spicy: true},
        'sweet and sour shrimp': {sour: true, bitter: false, sweet: true, spicy: false}
      }
    }

    Document(goodDoc)
    // => true

combined types

Using higher order functions (for example, with connective), you can combine predicates to effectively "mix in" multiple document types:

    var and = require('connective').and

    var Person = tracery({
      name: String
    })

    var Employee = and(Person, tracery({
      salary: Number,
      reportsTo: Person
    }))

Optional and Nullable types

Let's say not every employee has a supervisor. tracery has builtin helpers tracery.Optional (which can be the value or undefined) and tracery.Nullable (which can be the value or null):

    var Employee = and(Person, tracery({
      salary: Number,
      reportsTo: tracery.Nullable(Person)
    }))

    Employee({
      name: 'bob',
      salary: 10,
      reportsTo: null
    })
    // => true

Sometimes, you want to assert that an object property is exactly the value null. The null builtin type matches exactly the value null:

var Empty = tracery({
  value: null
})

Empty({
  value: null
})
// => true

Collections

Sometimes documents have variable property names, but you'd still like to check that the property values have a specific structure (for example, when using an object as a dictionary or hash table). We can use tracery.Collection:

    var State = tracery({
      capital: String,
      counties: tracery.Collection({seat: String, population: Number})
    })

    var California = {
      capital: 'Sacramento',
      counties: {
        // thanks wikipedia
        'Alameda': {seat: 'Oakland', population: 1510271},
        'Alpine': {seat: 'Markleeville', population: 1175}
      }
    }

    State(California)
    // => true

A Collection assumes keys are strings (like JavaScript objects).

typed arrays

We can specify that a property should be an array with any number of elements, all of a given type like so:

    var Likes = tracery({
      movies: [Movie],
      songs: [Song]
    })

Empty arrays will match, but sparse arrays will not. In the case that you really need them:

    var SparseLikes = tracery({
      movies: [tracery.Optional(Movie)]
    })

no no, I meant builtin type arrays

oh! Well that's great: we support the following builtin types:

    tracery({
      a: ArrayBuffer,
      b: DataView,
      c: Float32Array,
      d: Float64Array,
      e: Int8Array,
      f: Int16Array,
      g: Int32Array,
      h: Uint8Array,
      i: Uint16Array,
      j: Uint32Array,
      k: Date,
      l: RegExp
    })

Vector typed vectors (tuples)

Arrays with an expected structure are sometimes used for memory or performance reasons to reprent vectors or tuples. For example, a Cartesian coordinate (10, 20) could be represented as an object as {x: 10, y: 20} or as [10, 20]. We can specify vectors, which must match in terms of number of elements and type of element at each position, using tracery.Vector:

    var Point = tracery.Vector([Number, Number])

    var Square = tracery.Vector([Point, Point, Point, Point])

    var Circle = tracery({
      origin: Point,
      radius: Number
    })

InstanceOf

There's a shortcut for making a predicate to assert instanceof:

    var Foo = function () {}

    var foo = new Foo()

    var isFoo = tracery.InstanceOf(Foo)

    isFoo(foo)
    // => true

See test/example.js for more.

bonus: type diffing

You can require('tracery/diff') to generate objects diffing betweed expected and actual object structures. If there is no difference, it returns false, otherwise it returns an object structure similar to the object under test, with leaves of {actual: type, expected: type, actualValue: value}.

This module is included in the package, but is not loaded by default. It is useful for debugging and for unit tests.

See test/test.diff for a readable example.

installation

$ npm install tracery

running the tests

$ npm install
$ npm test

changelog

0.5.0 - add support for builtin typed arrays, Date, and RegExp objects in type signatures 0.4.0 - intial public release

contributors

jden [email protected] Zalastax [email protected]

please submit pull requests or issues

license

MIT (c) 2015 Jason Denizac. See LICENSE.md