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

assertrc

v1.0.7

Published

nanoTest assert collection.

Downloads

682

Readme

assertrc (assert real challange)

The assertrc is an alternative shorthanded assert collection.

##init


const assertManager = new (require('assertrc')).base();

simple test


assertManager.check(
    '1', // value
    `===`, // rule
    '1' // sample
);

simple test upload


assertManager.tests({
    'id':'value',
    'id2':'value2'
});

supported operators

| tac | Description | |---------------------|---------------------------| | == | Equal | | eq | Equal | | e | Equal | | equal | Equal | | equale | Equal | | !== | Not equal | | neq | Not equal | | ne | Not equal | | notequal | Not equal | | notequale | Not equal | | === | Equal with type | | eqt | Equal with type | | et | Equal with type | | qt | Equal with type | | equaltype | Equal with type | | equaletype | Equal with type | | !=== | Not equal with type | | neqt | Not equal with type | | net | Not equal with type | | nqt | Not equal with type | | notequaltype | Not equal with type | | notequaletype | Not equal with type | | j== | Deep Equal | | jeq | Deep Equal | | je | Deep Equal | | jsonequal | Deep Equal | | jsonequale | Deep Equal | | ==j | Deep Equal | | eqj | Deep Equal | | ej | Deep Equal | | equaljson | Deep Equal | | equalejson | Deep Equal | | > | Greater | | greater | Greater | | more | Greater | | higher | Greater | | bigger | Greater | | biger | Greater | | larger | Greater | | < | Less | | less | Less | | lower | Less | | smaller | Less | | smaler | Less | | length | Length | | istanceof | Instance of | | istance | Instance of | | is | Instance of | | v== | Value equal | | veq | Value equal | | ve | Value equal | | valueequal | Value equal | | valueequale | Value equal | | v!== | Value not equal | | vneq | Value not equal | | vne | Value not equal | | valuenotequal | Value not equal | | valuenotequale | Value not equal | | v=== | Value equal with type | | veqt | Value equal with type | | vet | Value equal with type | | vqt | Value equal with type | | valueequaltype | Value equal with type | | valueequaletype | Value not equal with type | | v!=== | Value not equal with type | | vneqt | Value not equal with type | | vnet | Value not equal with type | | vnqt | Value not equal with type | | valuenotequaltype | Value not equal with type | | valuenotequaletype | Value not equal with type | | vj== | Value deep equal | | vjeq | Value deep equal | | vje | Value deep equal | | valuejsonequal | Value deep equal | | valuejsonequale | Value deep equal | | v==j | Value deep equal | | veqj | Value deep equal | | vej | Value deep equal | | valueequaljson | Value deep equal | | valueequalejson | Value deep equal | | r== | Result Equal | | req | Result Equal | | re | Result Equal | | resultequal | Result Equal | | resultequale | Result Equal | | r!== | Result Not Equal | | rneq | Result Not Equal | | rne | Result Not Equal | | resultnotequal | Result Not Equal | | resultnotequale | Result Not Equal | | r=== | Result Equal Type | | reqt | Result Equal Type | | ret | Result Equal Type | | rqt | Result Equal Type | | resultequaltype | Result Equal Type | | resultequaletype | Result Equal Type | | r!=== | Result Not Equal Type | | rneqt | Result Not Equal Type | | rnet | Result Not Equal Type | | rnqt | Result Not Equal Type | | resultnotequaltype | Result Not Equal Type | | resultnotequaletype | Result Not Equal Type | | rj== | Result Equal Json | | rjeq | Result Equal Json | | rje | Result Equal Json | | resultjsonequal | Result Equal Json | | resultjsonequale | Result Equal Json | | r==j | Result Equal Json | | reqj | Result Equal Json | | rej | Result Equal Json | | resultequaljson | Result Equal Json | | resultequalejson | Result Equal Json |