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 🙏

© 2026 – Pkg Stats / Ryan Hefner

urectl

v0.1.0

Published

Rating Engine: Command Line Interface

Downloads

6

Readme

Pre-install

npm install -g shx
# // Valuable
node ./bin/run entity valuable add
# > response: valuable table

node ./bin/run entity valuable attribute set \
    [valuable-id] \
    [attribute-code] \
    [definition-category] \
    [relation-category] \
    [value-category] \
    (--value [some-code]) \
    (--dictionary [some-code] --entry [some-code]) \
    (--measure [some-code] --unit [unit-of-measure-code])
# > response: valuable attribute table


# // Attribute
node ./bin/run entity attribute add [some-code] [category]
# > response: attribute table


# // Attribute group
node ./bin/run entity attribute-group add [some-code]
# > response: attribute group table


# // Attribute group attribute
node ./bin/run entity attribute-group-attribute add [some-attribute-code] [some-group-code]
# > response: attribute group attribute table

node ./bin/run entity attribute-group-attribute delete [code]
# > response: attribute group attribute table


# // Attribute group attribute group
node ./bin/run entity attribute-group-attribute-group add [parent-group-code] [child-group-code]
# > response: attribute group attribute table

node ./bin/run entity attribute-group-attribute-group delete [code]
# > response: attribute group attribute table


# // Dictionary
node ./bin/run entity dictionary add [some-code]
# > response: dictionary table

node ./bin/run entity dictionary entry add [dictionary-id] [some-code] [some-value]
# > response: dictionary entry table

node ./bin/run entity dictionary entry delete [code]
# > response: dictionary entry table


# // Unit Of Measure
node ./bin/run entity unit-of-measure add [some-code] [category]
# > response: unit-of-measure table

node ./bin/run entity unit-of-measure delete [code]
# > response: unit-of-measure table


# // Offer management
node ./bin/run entity selection-algorithm list
# > response: selection-algorithm table

node ./bin/run entity application-algorithm list
# > response: application-algorithm table

node ./bin/run entity calculation-algorithm list
# > response: calculation-algorithm table

node ./bin/run entity offer list
# > response: offer table

# // Rating engine
node ./bin/run entity u-re list
# > response: u-re table


# // Unit type
node ./bin/run entity unit-type add [some-code] [category]
# > response: unit-type table
# > 

# // Requirement type
node ./bin/run entity requirement-type add [some-code]
# > response: requirement-type table


# // Specification unit
node ./bin/run entity specification-unit add [unit-type-code] [reference]
# > response: specification-unit table


# // Specification
node ./bin/run entity specification list
# > response: specification table

node ./bin/run entity specification add [reference] [category]
# > response: specification table


# // Specification Requirement
node ./bin/run entity specification-requirement add [reference] [specification-id] [requirement-type-code] \
    (--measure [some-float-value] --unit [unit-of-measure-code])
# > response: specification-requirement table


# // Specification Requirement Measure
node ./bin/run entity specification-requirement-measure add \
    [specification-requirement-id] \
    [some-float-value] \
    [unit-of-measure-code]
# > response: specification-requirement-measure table


# // Specification Requirement Unit
node ./bin/run entity specification-requirement-unit add \
    [specification-requirement-id] \
    [requirement-type-unit-type-code] \
    [unit-type-code] \
    [specification-unit-id]
# > response: specification-requirement-unit table