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

liken

v0.0.15

Published

javascript object matcher

Downloads

235

Readme

liken

** liken is experimental only **

liken is a library for declarative pattern matching and validation for javascript objects. It can be used in test expectations or for verifying that variables in application code adhere to certain expectations.

Example:

liken({
  firstName: String,
  lastName: optional(String),
  age: Number
});

...can be used to match objects like:

{
  firstName: 'Joey',
  age: 49
}

Features

  • Schemas are memoized for faster repeated exection.
  • TODO It can bail on the first error (for speed), or return all errors
  • TODO It can show pretty diffs

Types

Strings

liken({
  literal: "literal",
  regex: "literal",
  any: "blah blah blah"
}, {
  literal: "literal",
  regex: /liter[a]{1}l/,
  any: String
});  // this passes

Numbers

liken({
  literal: 47,
  integer: 38,
  any: 123.34
}, {
  literal: 47,
  integer: liken.number().integer(),
  any: Number
});  // this passes

Booleans

liken({
  anybool: false,
  sure: true,
  noway: false
}, {
  anybool: Boolean,
  sure: true,
  noway: false
});  // this passes

Dates

liken({
  anydate: new Date(1975),
  recentDate: new Date(),
  now: new Date();
}, {
  anydate: Date,
  recentDate: liken.date().recent(), // within 10 seconds
  now: new Date();
});  // this passes

Enumerables (#oneOf())

liken(
  "test",
  liken.oneOf(1,2,3,4,"test")
);  // this passes

Optionals (#optional())

liken({
  test: "test"
}, {
  test: "test",
  maybe: liken.optional(Number)
);  // this passes

Objects

liken({
  whatever: {
    matchEverything: "sure",
    why: "not"
  }
  works: true,
  subObject: {
    broken: false
  },
  keyPairs: {
    key0: "this",
    key1: "is",
    key2: "an",
    key3: "example",
  },
  partial: {
    atLeast: true,
    butMaybeAlso: true
  }
}, {
  whatever: Object,
  works: true,
  subObject: {
    broken: false
  },
  keyPairs: liken.object().keys(liken.array().ofAll(/^key/)),
  partial: liken.object().contains({atLeast: true})
);  // this passes

Arrays

liken({
  any: [1,2,3],
  ofAll: [false,false,true]
  literal: [4,5,6]
  withlength: [{obj: 1}, {obj: 2}]
}, {
  any: Array,
  ofAll: liken.array().ofAll(Boolean),
      // ^^^ sort of like a typed array, but more powerful
  literal: [4,5,6]
  withlength: liken.array().length(2)
);  // this passes

Anything / Everything (#any())

liken({
  tryThis: {test: true}
}, {
  tryThis: liken.any()
}); // this passes

Goals:

  • less verbose than similar options (react proptypes, jsonschema, mongoose, chai, expect.js)
  • supports literals annotated as themselves for easy matching in tests
  • can be used for run-time input-checking or for test assertions
  • easily extendable with new types
  • can return all failures, or stop at the first
  • can be extended to output other schema types (react proptypes, jsonschema, mongoose)
  • make error-messages as obvious as possible
  • keep the library dependency-free (except for test dependencies)

Future Plans:

  • dates with precision options
  • dates with before options
  • dates with after options
  • user-defined validators
  • any array with segment (slice)
  • any function

Design Choices:

  • Notations are always JSON serializable so that they are over-the-wire serializable and easy to parse. (eg, no functions)
  • Notations all have a chainable interface, always using functions for consistency and configurability.
  • All "types" have a notation that is an object with the type (preceded by a hash, all lower-case) as its first key and an options object for a value. (eg {"#boolean": {}} , which is for the Boolean type, with an empty options object).
  • There is no pre-processing of input. Only-validation.
  • There will always be validations that are not possible declaratively (eg "Is this email address taken?"). This only needs to be an 80% solution.
  • In functions where actual and expected values are both parameters, the actual value should precede the expected value as per convention.
  • unordered array matching is pretty expensive with how fuzzy these matchers can be and how multiple items can match the same matchers. Instead of solving this problem, the user should sort arrays for comparison first.

Questions:

  • are circular references an issue?
  • do we need negation?

Similar Art: