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

zealit

v2.4.1

Published

Create an object with zealous property accessor. Prevent getting nonexistent property by throwing a ReferenceError.

Downloads

857

Readme

Prevent getting nonexistent property by throwing a ReferenceError, using ES6 proxies. In other words, throw an error if reading an object property that doesn't exist.

Avoid typo or incomplete renaming/refactor. Usefull to combine with Object.freeze to declare constants.

Usage

const zealit = require('zealit')

const ref = { foo: true, bar: undefined }
ref.foo // true
ref.bar // undefined
ref.baz // undefined

// default behavior
const zealed = zealit(ref)
zealed.foo // true
zealed.bar // undefined, no Error thrown
zealed.baz // throws a ReferenceError

// "freeze" option
const myConstants = zealit({
    PI: 3.14159265,
    nbMsInOneDay: 1000 * 60 * 60 * 24,
}, { freeze: true })
myConstants.PI // 3.14159265
myConstants.Pi // throws a ReferenceError
myConstants.nbMsInOneDay = 39 // throws a TypeError

// "ignore" option
const foo = zealit({}, { ignore: 'bar' })
foo.bar // undefined, no Error thrown
foo.baz // throws a ReferenceError

// "clone" option
const bar = { baz: { yo: 1 } }
const baz = zealit(bar, { clone: true })
bar.baz.YO // undefined as bar was deeply cloned by zealit
baz.baz.YO // throws a ReferenceError

// "strict" option
const foo = zealit({ x: undefined }, { strict: false })
foo.x // undefined, no Error thrown
foo.y // throws a ReferenceError
const bar = zealit({ x: undefined }, { strict: true })
bar.x // throws a ReferenceError
bar.y // throws a ReferenceError

Methods and options

zealit(obj[, option])

Updates obj recursively and returns a zealed version of the object.

  • obj <any> Any JavaScript primitive or Object
  • option <Object>
    • freeze <boolean> If true, the object is freezed as the same time via Object.freeze. If provided, this local option will take precedence over the global option.
    • ignore <String|Array> Properties to ignore, no exception will be thrown for these properties as they keep behaving like vanilla JavaScript properties. The current zealed object will not throw exception for properties listed locally nor properties of the global list zealit.option.ignore
    • catch <boolean|Function> to override the default behavior (throwing a ReferenceError). If provided, this local option will take precedence over the global option.
      • fn(err): calls fn function with the ReferenceError as argument in place of throw ReferenceError
      • false: throw ReferenceError (default behavior)
      • true: doesn't throw ReferenceError
    • disable <boolean> If true, zealit does nothing. If provided, this local option will take precedence over the global option.
    • strict <boolean> If true, zealit throws a ReferenceError if property exists with the undefined value.

zealit.option

Object to expose global options, applies to all zealed objects.

  • freeze <boolean> If true, zealit will freeze objects as the same time via Object.freeze. Defaults to false. If provided, the local option will take precedence over this global option.

    zealit.option.freeze = true
    const foo = zealit({ bar: true })
    foo.bar = false // throws a TypeError
  • ignore <Array> Properties to ignore, no exception will be thrown for these properties as they keep behaving like vanilla JavaScript properties. Applies to all zealed objects, even those was instancied before an update of zealit.option.ignore

    const foo = zealit({ bar: true })
    foo.baz // throws a ReferenceError
    
    zealit.option.ignore.push('bar')
    foo.baz // undefined
  • catch <boolean|Function> to override the default behavior (throwing a ReferenceError). If provided, the local option will take precedence over this global option.

    • fn(err): calls fn function with the ReferenceError as argument in place of throw ReferenceError
    • false: throw ReferenceError (default behavior)
    • true: doesn't throw ReferenceError
    const foo = zealit({ bar: true })
    zealit.option.catch = (err) => { console.log('gotcha', err) }
    foo.baz // return undefined and console.log('gotcha', ReferenceError)
  • disable <boolean> If true, zealit does nothing, simply return obj itself.

    zealit.option.disable = true
    const foo = { bar: true }
    
    // same thing
    const baz = zealit(foo)
    const baz = foo
  • strict <boolean> If true, zealit throws a ReferenceError if property has the undefined value, even if property exists. By default, zealit throws a ReferenceError only if property doesn't exist.

    zealit.option.strict = true
    const foo = zealit({ bar: undefined })
    foo.bar // throws a ReferenceError

Installation

Using npm:

$ npm install zealit --save

In Node.js:

const zealit = require('zealit')

Todo

  • explain limitation (Promise, .length, lodash, hidden properties)
  • more documentation about "clone" option (lose hidden properties vs update and keep those)
  • option to rezeal a property
  • test with more node version (v6.7.0 at the moment)
  • option to disable recursion?