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

valido

v2.1.0

Published

Check and validation library

Downloads

263

Readme

Valido

General purpose check and validation library.

The focus is on providing selected, well tested checks and a convenient API. The library is inspired by other projects, like is_js and joi in terms of the API, but completely written from ground up to be easily extendable and testable.

Contributions are welcome.

Installing

npm install valido

Usage

const is = require('valido');

is.uri('http://www.test.com');
--> true

is.all.uri(['http://www.test.com', 123]);
--> false

is.optional.uri(null);
--> true

is.optional.uri('http://www.test.com');
--> true

is.optional.uri(123);
--> false

API

all

Will return true if all elements in the list validate to true. Can be combined with all predicates.

is.all.number([007, 123]);
--> true

is.all.number(['abc', 123]);
--> false

optional

Will return true if the provided value is either null/undefined or validates to true. Can be combined with all predicates.

is.optional.number(null);
--> true

is.optional.number(123);
--> true

is.optional.number('abc');
--> false

array(value:any)

Checks if value is an array.

is.array([]);
--> true

boolean(value:any)

Checks if value is a boolean.

is.boolean(true);
--> true

is.boolean(0);
--> false

buffer(value:any)

Checks if value is a buffer.

is.buffer(new Buffer('abc'));
--> true

is.buffer('abc');
--> false

date(value:any)

Checks if value is a date object.

is.date(new Date());
--> true

is.date('2016-01-01');
--> false

email(value:any)

Checks if value is a valid email according to link.

is.email('[email protected]');
--> true

is.email('test.com');
--> false

existy(value:any)

Checks if value is not null and not undefined.

is.existy(123);
--> true

is.existy(null);
--> false

finite(value:any)

Checks if value is finite.

is.finite(123);
--> true

is.finite(2e64);
--> true

is.finite(Infinity);
--> false

function(value:any)

Checks if value is a function.

is.function(() => {});
--> true

is.function(function(){});
--> true

is.function('function');
--> false

hexColor(value:any)

Checks if value is a hex color.

is.hexColor('#ff3366');
--> true

is.hexColor('#fff');
--> true

is.hexColor('cc33cc');
--> false

is.hexColor('fff');
--> false

integer(value:any)

Checks if value is an integer.

is.integer(123);
--> true

is.integer(-1);
--> true

is.integer(2e64);
--> true

is.integer(1.1);
--> false

natural(value:any, option:object)

Checks if value is a natural number.

is.natural(123);
--> true

is.natural(0);
--> true

is.natural(0, { disallowZero: true });
--> false

is.natural(1.1);
--> false

is.natural(-1);
--> false

null(value:any)

Checks if value is null.

is.null(null);
--> true

is.null(0);
--> false

is.null(undefined);
--> false

number(value:any)

Checks if value is of type number.

is.number(1);
--> true

is.number(Math.PI);
--> true

is.number(NaN);
--> true

is.number(Infinity);
--> true

is.number(2e64);
--> true

is.number('1');
--> false

plainObject(value:any)

Checks if value is a plain object (prototype is Object).

is.plainObject({});
--> true

is.plainObject(Object.assign({}));
--> true

is.plainObject(new Object({});
--> true

is.plainObject(function(){});
--> false

stream(value:any)

Checks if value is a stream.

const Stream = require('stream');

is.stream(new Stream.Readable());
--> true

is.stream(new Stream.Writable());
--> true

is.stream(new Stream.Transform());
--> true

is.stream(new Stream.PassThrough());
--> true

is.stream(new Stream.Duplex());
--> true

is.stream(123);
--> false

string(value:any, options:object)

Checks if value is a string.

is.string('abc');
--> true

is.string('abc', { startsWith: 'a' });
--> true

is.string('abc', { endsWith: 'b' });
--> false

is.string(123);
--> false

undefined(value:any)

Checks if value is undefined.

is.undefined(undefined);
--> true

is.undefined(null);
--> false

uri(value:any, options:object)

Checks if value is a URI according to RFC 3986.

is.uri('https://8.8.8.8:3128');
--> true

is.uri('https://localhost:80');
--> true

is.uri('mongodb://db.server.com:1234');
--> true

is.uri('https://user:[email protected]:8080/index.html?param=2&yy=abc');
--> true

is.uri('https://www.test.com/', { endsWith: '/' });
--> true

is.uri('https://www.test.com/', { startsWith: 'https://www.other.com' });
--> false

is.uri('google.com');
--> false