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

intrusive

v1.1.12

Published

a set of intrusive javascript modules, not for use in libraries

Downloads

34

Readme

Intrusive

Build Status

Overview

A collection of intrusive javascript changes. Don't use in libraries, only use in apps.

npm install intrusive

Then in the start of your app

require('intrusive')

Documentation

(More coming soon, hopefully)

Soak babel plugin

The soak babel plugin introduces a new unary prefix operator, +~, which automatically adds existence guards to its argument. The null check applies recursively to an entire member chain. In CoffeeScript terms, this is equivalent to replacing every . with ?., every subscript [... with ?[... and every function call fn(... with fn?(....

In other words, +~foo.bar().baz will check that foo exists, that foo.bar exists, and that foo.bar() exists. If any of those evaluate to null or undefined, the expression will return undefined (it will not return null even if, for example foo is null). If all of them do exist, then the result will be the same as foo.bar().baz (including null).

If these property accesses and methods cause side effects, then it is guaranteed that exactly the same side effects will occur when using +~. Of course, in the case that a null check fails, only the side effects up to that point will occur.

For example:

var count = 0;
var x = {
    y: function () {
        count++,
        return {z: 'tada!'},
    },
};

console.log(+~x.y().z); // --> tada!
console.log(count);     // --> 1

This is also the case for computed properties/indexes. For example:

var index = 0;
var arr = [{x: 'cat'}];

console.log(+~arr[index++].x) // --> cat
console.log(index)            // --> 1

Non-guarded constructions

Note, however, that neither function arguments, nor subscript property names are null checked. For example

var x = {}, foo = null;
+~x[foo.bar]; // --> error

You can, of course, nest the +~ operator, like so:

+~x[+~foo.bar]; // --> undefined

Finally, note that while function calls are guarded, the +~ operator does not guard against calling non-functions. This will still throw an error:

var x = {y: 'z'};
+~x.y(); // --> error (x.y is not a function)

Runtime requirements

The generated code requires that the function __soakNoop be defined in scope. The file 'babel-plugins/soak-runtime.js' defines this globally, but you can also define it manually. It is assumed to be an empty function, and to return nothing.