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

zerkel

v1.8.3

Published

A compiler for the zerkel language

Downloads

33

Readme

#zerkel An adzerk-based query-ish language.

###Language Zerkel provides primitive integer and string literals, identifiers, sets, and a selection of boolean operators:

| operator/type | comment | examples | |---------------|---------|----------| | integers | syntax | 42, -7 | | strings | syntax | "foo", "C:\\\\Windows\\System32", "^(foo|bar)\s+" | | variables | syntax | count, _foo_bar, $location.postalCode | | . | property accessor | $location.postalCode, foo.bar.baz | | [, ] | set construction | [42, "foo"] | | (, ) | expression grouping | x < 100 AND (y < 50 OR z < 10) | | = | | foo = 42 | | <> | not equal | foo <> "bar" | | =~ | regex match | foo =~ "^(some|regular|expression).*$" | | !~ | not regex match | foo !~ "^(some|regular|expression).*$" | | > | | foo > 42 | | < | | foo < 42 | | >= | | foo >= 42 | | <= | | foo <= 42 | | AND | | foo = 42 AND bar < 100 | | OR | | foo = 42 OR bar < 100 | | NOT | | NOT (bar =~ "^foo") | | LIKE | wildcard match | foo LIKE "ba*" | | CONTAINS | set membership / substring | ["foo", "bar"] CONTAINS "foo", "foobar" CONTAINS "foo" |

Thus, queries may be written like:

count > 43 and (user = "bob" or user = "alice")
keywords contains "awesome"

All operators are available in upper and lowercase forms.

###Demo

Check out the live Zerkel scratchpad demo app and try some zerkel queries in your browser.

###Usage Queries can executed in coffeescript/javascript using the zerkel module, like so:

zerkel = require 'zerkel'

query = 'count > 43 and (user = "bob" or user = "alice")'
matchFn = zerkel.compile query
matchFn {count: 50, user: 'bob'} # true
matchFn {count: 12, user: 'alice'} # false
matchFn {count: 50, user: 'George Michael'} # terribly, unfortunately, false

You can also access properties on passed in objects, like so:

zerkel = require 'zerkel'

query = 'user.location = "open field west of a white house"'
matchFn = zerkel.compile query
matchFn {user: {name: 'bob', location: 'open field west of a white house'}} # true
matchFn {user: {name: 'alice', location: 'middle earth'}} # false

###Gzip Set the parser.MIN_GZIP_SIZE to a number, and if the length of the compiled JavaScript is greater than that it will be gzipped and base64 encoded, with GZ: prepended. The zerkel#makePredicate function will unzip automatically as necessary.

parser = require 'zerkel-parser'

parser.MIN_GZIP_SIZE = 50
parser.parse 'foo = 42'              # _helpers['getIn'](_env, 'foo')==42'
parser.parse '[42, 43] contains foo' # GZ:H4sIAAAAAAAAA9OINjHSMTGOVVODMvQy81JSK/zTNOIzUnMKUouKo9XTU0s889RjNeJT88p0FNTT8vPVNTUV7GwVDDQBm8CsuD8AAAA=

###Status Build Status

###License Apache 2.0