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

keynum

v1.3.0

Published

A simple enum type with emphasis on keys

Downloads

46

Readme

keynum Build Status

A simple enum type with emphasis on keys

Basic usage

var Enum = require('keynum');

var size = Enum(['SMALL', 'MEDIUM', 'BIG']);

console.log(size.SMALL); // => 0
console.log(size.MEDIUM); // => 1
console.log(size.BIG); // => 2

// using .get
console.log(size.get('SMALL')); // => 0
console.log(size.get(0)); // => 0

// getting all enumerated keys
var keys = size.keys(); // ['SMALL', 'MEDIUM', 'BIG']

keynum is intended to make key:value matching easy using .has and .get

// the key is returned if the given key or value exists
console.log(size.has('SMALL')); // => 'SMALL'
console.log(size.has(0)); // => 'SMALL'

console.log(size.has('TINY')); // => false
console.log(size.get('TINY') && size.get(45)); // => undefined

so you can do things like this:

var validType = size.get(size.has(someKeyOrValue) || size.MEDIUM); // defaults to MEDIUM if an invalid type is given

keynum types are always returned as a frozen object to prevent changes, unless false is given as the freeze option.

More advanced enumeration

An enum can be created from an array or an object. This gives greater control over the associated values. By default values start at 0 and increment by 1 as can be seen earlier. This can be overridden by providing single key:value objects as an array entry:

var size = Enum(['TINY', 'SMALL', {MEDIUM: 4}, {BIG: 10}, 'MASSIVE']);
console.log(size.TINY); // => 0
console.log(size.MEDIUM); // => 4
console.log(size.MASSIVE); // => 11

or by just using an object:

var size = Enum({
    SMALL: 1,
    BIG: 10
    MEDIUM: 5
}); // order does not matter
console.log(size.SMALL); // => 1
console.log(size.MEDIUM); // => 5
console.log(size.BIG); // => 10

The new operator is optional; use however you would like to: Enum(['A', 'B', 'C']) || new Enum(['D', 'E', 'F']);

Options

An enum can now be given options at creation:

var size = Enum(['SMALL', 'MEDIUM', 'BIG'], {
    freeze: false,          // defaults to true
    ignoreCase: true,       // defaults to false
    preserveCase: false     // defaults to true
});
  • freeze option will return a frozen object, if true (default)
  • ignoreCase will allow case-insensitive matching of keys using has or get, if true
  • preserveCase determines how properties are cased and can be any of the following
    • true => preserves keys exactly as given (default)
    • false => converts keys to UPPERCASE
    • 'upper' => same as false
    • 'lower' => converts keys to lowercase

Example

var size = Enum(['sMaLL', 'MEDium', 'BIG'], { preserveCase: 'lower', ignoreCase: true });
console.log(size.small); // => 0
console.log(size.has('sMaLL')) // => 'small'

Dynamic enumerated types

An unfrozen enum can have new enumerations added using the add method:

var size = Enum(['SMALL', 'MEDIUM', 'BIG'], {freeze:false});
size.add('MASSIVE')
    .add('TINY', -1);
console.log(size.MASSIVE); // => 3
console.log(size.TINY); // => -1
console.log(size.keys()) // => [ 'SMALL', 'MEDIUM', 'BIG', 'MASSIVE', 'TINY' ]

If a value is not specified for the key it is incremented from the highest existing value. Keys must still remain unique, and duplicate values will throw an error; i.e. size.add('LITTLE', 0) => Error: The specified value is already enumerated


Tests

Run tests using npm test