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

@tbtk-site/tbtk-optional

v1.0.1

Published

TypeScript implementation of something like Java's Optional

Downloads

4

Readme

What is this?

This is a TypeScript implementation of the so-called Optional, Maybe, Option.

There are plenty of such libraries on the Web, but I could not find one with an API that was easy for me to use, so I created my own.

Install

# npm
npm install @tbtk-site/tbtk-optional

# yarn
yarn add @tbtk-site/tbtk-optional

Using jsDelivr:

<script src="https://cdn.jsdelivr.net/npm/@tbtk-site/tbtk-optional/dist/index.min.js"></script>

RunKit Demo

https://runkit.com/tbtk-site/634689649aecdd0008e362c6

How to use

Please refer to the test case for detailed usage.

import { just, none } from "@tbtk-site/tbtk-optional";

function optionalTest(optional) {
  return optional.getOrElse("none");
}

res.send(optionalTest(just("just")) + optionalTest(none())); // justnone

DO notation style

Haskell has a syntax called DO notation, which allows you to glue monadic chains in a way that all intermediate results can be used. This library provides Do and bind to write Optional chains in a similar way.

As an example, a function that doubles a number, a function that multiplies a number by 4, and a function that multiplies a number by 8 may all fail. Suppose you have a "function that converts all intermediate results into strings" and want to call them by connecting them in a method chain.

If you don't want the intermediate result, you can just method chain the flatMap, but this time it's what you want. I think that if you write this with flatMap naively, it will be nested as follows.

const two_x = a => just(a * 2);
const four_x = a => just(a * 4);
const eight_x = a => just(a * 8);

just(2).flatMap(
  a => two_x(a).flatMap(
    b => four_x(a).flatMap(
      c => eight_x(a).map(
        d => `2x=${b}, 4x=${c}, 8x=${d}`
      )
    )
  )
);

It is not easy to read at all. This is what happens when you use Do and bind.

const two_x = a => just(a * 2);
const four_x = a => just(a * 4);
const eight_x = a => just(a * 8);

Do()
  .bind("a", _ => just(2))
  .bind("b", m => two_x(m.a))
  .bind("c", m => four_x(m.a))
  .bind("d", m => eight_x(m.a))
  .map(m => `2x=${m.b}, 4x=${m.c}, 8x=${m.d}`);

Nesting is eliminated, which is beautiful. Naturally, even in Do, if none is reached in the middle of the process, subsequent processing is terminated.

  const two_x = a => just(a * 2);
  const four_x = _ => none();     // Not called after that.

  Do()
    .bind("a", _ => just(2))
    .bind("b", m => two_x(m.a))
    .bind("c", m => four_x(m.a))
    .bind("d", _ => { throw new Error("Not called") }) // Not called
    .map(_ => { throw new Error("Not called") });      // Not called

License

MIT