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

@buggyorg/typify

v0.1.12

Published

Applies a type scheme to a weakly typed buggy graph.

Downloads

22

Readme

Typify

Applies a type scheme to a weakly typed buggy graph. Typify offers six rules that can be applied selectively or all at once. Uses rewrite library to iteratively search for candidates and apply the rules.

Usage

To typify the graph completely, use

g1 = Typify.TypifyAll(g, maxIterations)

where maxIterations is optional (default: Infinity) To apply single rules, use

Graph.flow(
  Typify.TypifyConstants(),
  Typify.TypifyEdge(),
  Typify.typifyLambdaOutput(),
  Typify.typifyLambdaOutput()
  // Typify.TypifyRecursion() // not yet implemented..
)(graph)

where

  • TypifyConstants deduces the type of all constants and sets the port types accordingly.
  • TypifyEdge typifies a edge from mixed generic/nongeneric source/target
  • typifyLambdaOutput Identifies the Lambda implementation with the lambda function type
  • TypifyRecursion typifies a recursion node

Generic types or type names are indicated by a lower case first character (i.e. 'generic' and 'a' are considered generic, 'Number' and 'A' aren't). For arrays there is a rest parameter indicated by the ... prefix.

All types are strings or should follow this format:

var type = {
  name: 'Specific'
  data: [
    'genOutput' // list of data types
  ]
}

Functions have simply a special type name and structure

var fnType = {
  name: 'Function'
  data: [
    {
      name: 'arguments',
      data: ['list', 'of' 'args']
    },
    {
      name: 'returnValues',
      data: ['list', 'of', 'outputs']
    }
  ]
}

Rest parameters can be used like this:

import * as Unify from '@buggyorg/typify/lib/unify'
const t1 = {
  name: 'T1'
  data: ['first', '...rest']
}
const t2 = {
  name: 'T2'
  data: ['Number']
}
const t3 = {
  name: 'T3'
  data: ['String', 'Number', 'Boolean']
}

const assign1 = Unify.UnifyTypes(t1, t2)
/*
 assign1 = {
   first: 'Number',
   rest: []
 }
*/

const assign2 = Unify.UnifyTypes(t1, t3)
/*
 assign2 = {
   first: 'String',
   rest: ['Number', 'Boolean']
 }
*/