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

specmob

v0.6.8

Published

return dynamic results from dsl patterns

Downloads

111

Readme

specmob

(c)Bumblehead

npm version Build Status

specmob returns dynamic results from dsl patterns. For example, this simple pattern would result as 'world',

{
  type : 'literal',
  value : 'world'
}

This pattern returns the product of a function named 'sayhello',

{
  type : 'fn',
  fnname : 'sayhello'
}

Nested and grouped patterns describe complex operations. This pattern resolves a monthly horoscope using the two-digit representation of the current month. "fn" stands for "function" and "cb" stands for "callback".

{
  optarr : [{
    optarr : [{
      format : 'mm'
    },{
      type : 'fn',
      fnname : 'getdate',
      name : 'date'
    }],
    type : 'fn',
    fnname : 'getmonthfromdate',
    name :  'monthnumber'
  }],
  type : 'cb',
  cbname : 'requestmonthlyhoroscope',
  name :  'horoscope'
}

walkthrough

specmob relies on callbacks and functions to construct the specmob interpreter.

const functions = {
  getdate : ([val], opts) =>
    new Date(), 

  getmonthfromdate : ([val], opts) => {
    const month = opts.date.getMonth() + 1;

    return opts.format === 'mm'
      ? ('0' + month).slice(-2) // 0 padded
      : month;
  }
}

const callbacks = {
  requestmonthlyhoroscope : ([val], opts, fn) => (
    // callback this returns a service communication...
    opts.thismonth % 2
      ? fn(null, 'you have good luck this month!')
      : fn(null, 'you have okay luck this month!')
  )
}

const specmobinterpreter = specmob({speccb: callbacks, specfn: functions);

all interpreter functions use the same six parameters and most return results to a node-style callback (err, res). some parameters may seem unnecessary and unusual but specmob is meant to be used within a larger program for which those parameters make sense. here's an example call,

specmobinterpreter.retopt(sess, cfg, graph, node, namespace, {
  optarr : [{
    optarr : [{
      format : 'mm'
    },{
      type : 'fn',
      fnname : 'getdate',
      name : 'date'
    }],
    type : 'fn',
    fnname : 'getmonthfromdate',
    name :  'monthnumber'
  }],
  type : 'cb',
  cbname : 'requestmonthlyhoroscope',
  name :  'horoscope'
}, (err, graph, result) => {
  
})

the paremeters are,

  • sess (session), app session state
  • cfg (configuration), app configuration details
  • graph, app state
  • node, node state, which presumably relates to the given pattern
  • ns, (namespace) an object with properties used to construct arguments (explained later)

these parameters are passed to the internal and external functions used by the interpreter. ex,

const functions = {
  getdate : ([val], opts, sess, cfg, graph, node) =>
    new Date()
};
const callbacks = {
  getdate : ([val], opts, fn, sess, cfg, graph, node) =>
    fn(null, new Date())
};

For applications using specmob, any functionality or result becomes possible using patterns to resolve data from the user session or the state of the application (graph).

New forms can be defined on the interpreter at runtime to add support for new patterns. for example, adding support for the pattern of type "regexp". to add support define a new function named with type prefixed by "ret".

const specmobinterpreter = specmob({speccb: callbacks, specfn: functions});

specmobinterpreter.retregexp = (sess, cfg, graph, node, ns, opts, fn) => {
  fn(null, new RegExp(opts.value, opts.modifier));
};

an example that constructs the interpreter, then adds support for the regexp pattern, then interprets a pattern using the type "regexp",

const callbacks = {}
const functions = {
  isregexp : ([val], opts, sess, cfg, graph, node) =>
    opts.re.test(opts.string)
};

// construct interpreter
const specmobinterpreter = specmob({speccb: callbacks, specfn: functions});

// define function new type "regexp" using the name "retregexp"
specmobinterpreter.retregexp = (sess, cfg, graph, node, ns, opts, fn) => {
  fn(null, new RegExp(opts.value, opts.modifiers));
};

// use a pattern that includes the new "regexp" type
specmobinterpreter.retopt(sess, cfg, graph, node, ns, {
  optarr : [{
    type : 'regexp',
    value : '^hello',
    modifiers : '',
    name : 're'
  },{
    type : 'literal',
    value : 'hello at beginning of string',
    name : 'string'
  }],
  type : 'fn',
  fnname : 'isregexp'
}, (err, graph, res) => {
  console.log(res) // true
});

Validation patterns can be used as well. When validation fails it will return false and an errkey if one is defined on the pattern,

const callbacks = {}
const functions = {
  isstring : ([val], opts, sess, cfg, graph, node) =>
    typeof val === 'string',
  isgtlength : ([val], opts, sess, cfg, graph, node) =>
    (String(val).length - 1) >= opts.length
};
    
const specmobinterpreter = specmob({speccb: callbacks, specfn: functions});

specmobinterpreter.getpass(sess, cfg, graph, node, {
  testvalue : 'notlong'
}, {
  type : 'AND',
  whenarr : [{
    type : 'OR',
    errkey : 'notstringornumber',
    whenarr : [{
      type : 'fn',
      fnname : 'isstring',
      args : ['testvalue']
    },{
      type : 'fn',
      fnname : 'isnumber',
      args : ['testvalue']
    }]
  },{
    type : 'fn',
    fnname : 'isgtlength',
    opts : { length : 10 },
    args : ['testvalue'],
    errkey : 'notlongenough'
  }]
}, (err, errkey, ispass) => {
  console.log(ispass, errkey); // false 'notlongenough'
});

scrounge

(The MIT License)

Copyright (c) Bumblehead [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.