New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

check-types-mini

Package Overview
Dependencies
Maintainers
1
Versions
198
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

check-types-mini

Check the types of your options object's values after user has customised them

  • 5.5.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.3K
increased by21.26%
Maintainers
1
Weekly downloads
 
Created
Source

check-types-mini

Check the types of your options object's values after user has customised them

Minimum Node version required Repository is on BitBucket Coverage View dependencies as 2D chart Downloads/Month Test in browser Code style: prettier MIT License

Table of Contents

TLDR - use default opts to enforce types

const checkTypes = require("check-types-mini");

function yourFunction(input, originalOpts) {
  // 1. declare defaults:
  const defaults = { placeholderEnabled: false };
  // 2. merge given opts into defaults:
  const opts = Object.assign({}, defaults, originalOpts);
  // 3. type check:
  checkTypes(opts, defaults, {
    msg: "newLibrary/yourFunction(): [THROW_ID_01]"
  });

  // rest of your app goes here...
}

// NOW, let's call our function with wrong opts and see what happens:
let res = yourFunction(1, { placeholderEnabled: "zzz" }); // <---  notice opts key was Boolean in defaults

// WE GET A TYPE ERROR THROWN:
// =>> TypeError: 'newLibrary/yourFunction(): [THROW_ID_01] opts.placeholderEnabled was customised to "zzz" which is not boolean but string'

⬆ back to top

Install

npm i check-types-mini

Consume:

// as CommonJS require:
const checkTypes = require("check-types-mini");
// or native source directly, as an ES Module:
import checkTypes from "check-types-mini";

Here's what you'll get:

TypeKey in package.jsonPathSize
Main export - CommonJS version, transpiled to ES5, contains require and module.exportsmaindist/check-types-mini.cjs.js10 KB
ES module build that Webpack/Rollup understands. Untranspiled ES6 code with import/export.moduledist/check-types-mini.esm.js11 KB
UMD build for browsers, transpiled, minified, containing iife's and has all dependencies baked-inbrowserdist/check-types-mini.umd.js27 KB

⬆ back to top

Idea

Imagine you have a library where you let users set the options object which comes as one of the input arguments.

Here's a challenge: how do you check (and throw) errors easily, when users set your options to wrong things?

Answer: this library.

Features:

  • Use a default options object to enforce types
  • Supplement or fully customise types (via a simple schema)
  • Customise error messages so that errors show source as your library, even though check-types-mini threw them

For example, here's a typical throw error generated by this library:

TypeError: yourLibrary/yourFunction(): [THROW_ID_01] opts.placeholder was customised to "false" which is not boolean but string

Originally this library started as a function within one of my libraries. When I was about to copy-paste the thing into another library, I stopped and put that into a separate library, this library. I'm glad I did it, because already 7 22 36 42 of my libraries depend on it.

The point of check-types-mini is to save your time: time spent coding up all these checks, time spent debugging, and even consumers' time spent debugging your API when they try to use it wrongly. Every library that has options object will need some type checks if you let user tinker with it.

⬆ back to top

API

checkTypes(obj[, ref^, opts])

Use it by calling its function. You don't need to assign it to anything - good outcome is nothing happens, bad outcode is error thrown.

Technically speaking, the main and only job of check-types-mini is to throw errors when your library's consumers are using it wrongly. Error messages can be customised:

Input argumentTypeObligatory?Description
objPlain objectyesOptions object after user's customisation
refPlain objectno^Default options - used to compare the types
optsPlain objectnoOptional options go here.

^ref can be null or undefined if all keys are set via opts.schema (see below).

⬆ back to top

Options object

options object's keyTypeObligatory?DefaultDescription
{
ignoreKeysArray or Stringno[] (empty array)Instructs to skip all and any checks on keys, specified in this array. Put them as strings.
ignorePathsArray or Stringno[] (empty array)Instructs to skip all and any checks on keys which have given object-path notation-style path(s) within the obj. Similar thing to opts.ignoreKeys above, but unique (because simply key names can appear in multiple places whereas paths are unique).
acceptArraysBooleannofalseIf it's set to true, value can be array of elements, same type as reference.
acceptArraysIgnoreArray of strings or Stringno[] (empty array)If you want to ignore acceptArrays on certain keys, pass them in an array here.
enforceStrictKeysetBooleannotrueIf it's set to true, your object must not have any unique keys that reference object (and/or schema) does not have.
schemaPlain objectno{}You can set arrays of types for each key, overriding the reference object. This allows you more precision and enforcing multiple types.
msgStringno``A message to show. I like to include the name of the calling library, parent function and numeric throw ID.
optsVarNameStringnooptsHow is your options variable called? It does not matter much, but it's nicer to keep references consistent with your API documentation.
}

Here are all defaults in one place:

{
  ignoreKeys: [],
  ignorePaths: [],
  acceptArrays: false,
  acceptArraysIgnore: [],
  enforceStrictKeyset: true,
  schema: {},
  msg: "check-types-mini",
  optsVarName: "opts"
}

⬆ back to top

For example

The common pattern is,

  1. a) Define defaults object. Later it will be used to validate user's options, PLUS, if that's not enough, you can allow users to provide arrays of the matching type (set opts.acceptArrays to true)
  2. b) Alternatively, you can skip defaults object and provide schema for each key via opts.schema. Just stick an object there, as a value, with all keys. Put allowed types in an array.
  3. Object.assign cloned defaults onto the options object that comes from the input.
  4. call check-types-mini with the above.
  5. If input types mismatch, error will be thrown.
const checkTypes = require("check-types-mini");

function yourFunction(input, opts) {
  // declare defaults, so we can enforce types later:
  const defaults = {
    placeholder: false
  };
  // fill any settings with defaults if missing:
  opts = Object.assign({}, defaults, opts);

  // the check:
  checkTypes(opts, defaults, {
    msg: "newLibrary/yourFunction(): [THROW_ID_01]",
    optsVarName: "opts"
  });
  // ...
}

let res = yourFunction(1, { placeholder: "zzz" });

// =>> [TypeError: 'newLibrary/yourFunction(): [THROW_ID_01] opts.placeholder was customised to "zzz" which is not boolean but string']

Sometimes you want to accept either a string (or type "X") or an arrays of strings (elements of type "X"). As long as ALL the elements within the array match the reference type, it's OK. For these cases set opts.acceptArrays to true.

This will throw:

const checkTypes = require("check-types-mini");
checkTypes(
  {
    // < input
    option1: "setting1",
    option2: [true, true],
    option3: false
  },
  {
    // < reference
    option1: "setting1",
    option2: false,
    option3: false
  }
);
// => Throws, because reference's `option2` is Boolean ("false") but input `option2` is array ("[true, true]").

But when we allow arrays of the matching type, it won't throw anymore:

const checkTypes = require("check-types-mini");
checkTypes(
  {
    option1: "setting1",
    option2: ["setting3", "setting4"],
    option3: false
  },
  {
    option1: "setting1",
    option2: "setting2",
    option3: false
  },
  {
    acceptArrays: true
  }
);
// => Does not throw, because we allow arrays full of a matching type

If you want, you can blacklist certain keys of your objects so that opts.acceptArrays will not apply to them. Just add keys into opts.acceptArraysIgnore array.

⬆ back to top

opts.enforceStrictKeyset

When I was coding a new major version of ast-delete-object I had to update all the unit tests too. Previously, the settings were set using only one argument, Boolean-type. I had to change it to be a plain object. I noticed that when I missed updating some tests, their Booleans were Object.assigned into a default settings object and no alarm was being raised! That's not good.

Then I came up with the idea to enforce the keys of the object to match the reference and/or schema keys in options. It's on by default because I can't imagine how you would end up with settings object that does not match your default settings object, key-wise, but if you don't like that, feel free to turn it off. It's opts.enforceStrictKeyset Boolean flag.

⬆ back to top

opts.schema

Sometimes your API is more complex than a single type or array of them. Sometimes you want to allow, let's say, string or array of strings or null. What do you do?

Enter opts.schema. You can define all the types for particular key, as an array:

const checkTypes = require("check-types-mini");
checkTypes(
  {
    option1: "setting1",
    option2: null
  },
  {
    option1: "zz",
    option2: "yy" // << notice, it's given as string in defaults object
  },
  {
    schema: {
      option2: ["stRing", null]
    }
  }
);
// => does not throw

The types are case-insensitive and come from type-detect, a Chai library:

  • 'object' (meaning a plain object literal, nothing else)
  • 'array'
  • 'string'
  • 'null'
  • and other usual types

Also, you can use more specific subtypes:

  • 'true'
  • 'false'

The 'true' and 'false' are handy in cases when API's accept only one of them, for example, 'false' and 'string', but doesn't accept 'true'.

For example,

const res = checkTypes(
  {
    // <--- this is object we're checking
    option1: "setting1",
    option2: true // <--- bad
  },
  {
    // <--- this is default reference object
    option1: "zz",
    option2: null
  },
  {
    // <--- opts
    schema: {
      option2: ["null", "false", "string"]
    }
  }
);
// => throws an error because `option2` should be either false or string, not true

All the type values you put into opts.schema are not validated, on purpose, so please don't make typos.

⬆ back to top

Contributing

  • If you see an error, raise an issue.
  • If you want a new feature but can't code it up yourself, also raise an issue. Let's discuss it.
  • If you tried to use this package, but something didn't work out, also raise an issue. We'll try to help.
  • If you want to contribute some code, fork the monorepo via BitBucket, then write code, then file a pull request via BitBucket. We'll merge it in and release.

In monorepo, npm libraries are located in packages/ folder. Inside, the source code is located either in src/ folder (normal npm library) or in the root, cli.js (if it's a command line application).

The npm script "dev", the "dev": "rollup -c --dev --silent" builds the development version retaining all console.logs with row numbers. It's handy to have js-row-num-cli installed globally so you can automatically update the row numbers on all console.logs.

⬆ back to top

Licence

MIT License

Copyright (c) 2015-2019 Roy Revelt and other contributors

Keywords

FAQs

Package last updated on 16 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc