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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@100terres/spread

v1.0.0

Published

Ergonomic conditional spread.

Readme

@100terres/spread

Ergonomic conditional spread.

Why?

Instead of using an if statement with Object.assign.

function buildConfig(host, isSecure) {
  const config = { host, protocol: "http" };

  if (isSecure) {
    Object.assign(config, { ssl: true, protocol: "https" });
  }

  return config;
}

Instead of using a ternary operator wrapped in parentheses, which either returns the object to spread or an empty object literal.

const buildConfig = (host, isSecure) => ({
  host,
  protocol: "http",
  ...(isSecure ? { ssl: true, protocol: "https" } : {}),
});

You can use this easy-to-read utility.

import spread from "@100terres/spread";

const buildConfig = (host, isSecure) => ({
  host,
  protocol: "http",
  ...spread({ ssl: true, protocol: "https" }).if(isSecure),
});

See the usage section for more examples.

Getting Started

Install @100terres/spread using the package manager of your choosing, import it and start using it!

Using npm

npm install @100terres/spread

Using pnpm

pnpm add @100terres/spread

Using yarn

yarn add @100terres/spread

Usage

Overview

| Examples | Description | | ------------------------------------ | -------------------------------------------------------- | | spread(object).if(condition) | Returns object when condition is truthy | | spread(object).unless(condition) | Returns object when condition is falsy | | spread(array).if(condition) | Returns array when condition is truthy | | spread(array).unless(condition) | Returns array when condition is falsy | | spread(callback).if(condition) | Returns value from callback when condition is truthy | | spread(callback).unless(condition) | Returns value from callback when condition is falsy |

Disclaimer

If the condition isn't met the function returns an empty array. Since an empty array can be spread into both objects and arrays, nothing is added in either case.

With if method

It returns the object passed if the condition is truthy.

import spread from "@100terres/spread";

// { foo: "bar", baz: "qux" }
const a = {
  foo: "bar",
  ...spread({ baz: "qux" }).if(true),
};

// { foo: "bar" }
const b = {
  foo: "bar",
  ...spread({ baz: "qux" }).if(false),
};

With unless method

It returns the object passed if the condition is falsy. In this example, we'll use an array, instead of an object.

import spread from "@100terres/spread";

// [ "foo", "bar" ]
const a = ["foo", "bar", ...spread(["baz", "qux"]).unless(true)];

// [ "foo", "bar", "baz", "qux" ]
const a = ["foo", "bar", ...spread(["baz", "qux"]).unless(false)];

With a callback

It conditionally invokes the callback.

import spread from "@100terres/spread";

// It will also log "Hello World!"
// { foo: "bar", baz: "qux" }
const a = {
  foo: "bar",
  ...spread(() => {
    console.log("Hello World!");

    return { baz: "qux" };
  }).if(true),
};

// It won’t log "Hello World!"
// { foo: "bar" }
const b = {
  foo: "bar",
  ...spread(() => {
    console.log("Hello World!");

    return { baz: "qux" };
  }).if(false),
};

JSX example

It can increase the readability of your JSX code.

import spread from "@100terres/spread";

const SubmitButton = (props) => {
  const { isSubmitting } = props;

  return (
    <button
      type="submit"
      disabled={isSubmitting}
      {...spread({ className: "is-loading" }).if(isSubmitting)}
    >
      Submit
    </button>
  );
};

License

Licensed under the MIT license.

Acknowledgements

Mathieu Mazy is the original author of the utility itself.

I've created, published, and maintained @potloc/spready package, but I no longer work at Potloc, and I've lost access to the repo, so I've decided to bring it back to life under @100terres/spread.