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

tipe

v0.1.12

Published

The fastest JavaScript type checker for V8

Downloads

246

Readme

Tipe

The fastest JavaScript type checker for V8

NPM version Build Status Coverage Status

Why tipe?

JavaScript's native typeof is famously broken. Many folks turn to the excellent is library for help: https://github.com/enricomarino/is.

Not content with is? You should probably write your own type checker. Still not content? Tipe has been hand-tuned to provide the fastest internal test possible for any type expression on the V8 Javascript engine. This makes it particularly well suited for highly-scalable node.js applications.

Install with nodejs

    npm install tipe

Basic use

Tipe includes a base method, tipe(value) which always returns a string, like typeof, for all valid identifiers, including custom tipes. This is useful in switch statements.

var tipe = require('tipe')
tipe()              // 'undefined'
tipe(null)          // 'null'
tipe('foo')         // 'string'
tipe(false)         // 'boolean'
tipe(1)             // 'number'
tipe({})            // 'object'
tipe([])            // 'array'
tipe(new Error())   // 'error'
var args, fn
fn = function(){args = arguments}
tipe(fn)            // 'function'
tipe(args)          // 'arguments'

Boolean test methods for each type

For each tipe there are two boolean test methods: tipe.tipename(value), and tipe.isTipename(value). Some prefer the shorter version, others perfer methods names that are not reserved words.

tipe.boolean(false)       // true
tipe.isBoolean(false)     // true
tipe.error(new Error())   // true
tipe.isError(new Error()) // true

etc... These appear automatically for custom types as well.

Custom Types

Tipe lets you add your own custom types for any constructor. They work like any other type.

function Dog(){}
var fido = new Dog()
tipe(fido)              // 'object'
tipe.dog(fido)          // runtime exception: tipe has no method 'dog'
tipe.addTipe('Dog', 'dog')
tipe(fido)              // 'dog'
tipe.dog(fido)          // true
tipe.isDog(fido)        // true

Performance

Tipe aims to be as fast as any pure javascript type checker can be. For each internal type check, tipe chooses the fastest availble V8 expression to determine the result. To see method-by-method comparisons for yourself, run:

node bench

Here is the bench summary output for [email protected] vs [email protected], weighing shared methods equally:

benchmarking /Users/gs/tipe/bench.js
Please be patient.
{ http_parser: '1.0',
  node: '0.10.33',
  v8: '3.14.5.9',
  ares: '1.9.0-DEV',
  uv: '0.10.29',
  zlib: '1.2.3',
  modules: '11',
  openssl: '1.0.1j' }
Scores: (bigger is better)

tipe
Raw:
 > 126.62013958125623
 > 125.62313060817547
 > 126.74650698602794
 > 126.74650698602794
 > 126.49402390438247
 > 127.49003984063745
 > 126.87312687312688
 > 126.74650698602794
Average (mean) 126.6674977207078

is
Raw:
 > 55.94405594405595
 > 55.83250249252243
 > 55.99214145383104
 > 55.83250249252243
 > 56.32411067193676
 > 56.26850937808489
 > 56.21301775147929
 > 56.10236220472441
Average (mean) 56.063650298644646

Winner: tipe
Compared with next highest (is), it's:
55.74% faster
2.26 times as fast
0.35 order(s) of magnitude faster
QUITE A BIT FASTER

Dogfood

3meters relies on the public tipe module for our aircandi web service.

Contributing

We welcome any improvements via email, issues, or PRs.

Copyright

Copyright (c) 2013 3meters. All rights reserverd.

License

MIT