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

@rmstek/rms-ts-monad

v1.0.1

Published

Typescript monads, focus is on simplicity and typesafety

Downloads

3

Readme

RMS Typescript Monads

OneMany monad for TypeScript.

OneMany

I wrote the OneMany monad to work in conjunction with the Result monad, found in the npm rms-ts-monad package package.

I use the Result monad to capture the results of CRUD operations:

export type ResultOk = {
	code: number, // a REST/HTTP status code (200 series)
	payload: TBD // element or an element collection
}
export type CrudError = {
	code: number,
	content: string
}
export type CrudResult = Result<CrudError, ResultOk>;

In the above example, ResultOk.payload can be a single or multiple instances of an entity

  • to hold the results of a CRUD operation to create a single entity, create(entity: Entity): Entity, ResultOk.payload must represent a single Entity;
  • to hold the results of CRUD operations to read all entities, read(): Entity[], ResultOk.payload must represent an Entity collection.

The OneMany monad comes to the rescue, enabling us to rewrite ResultOk:

export type ResultOk = {
	code: number, // a REST/HTTP status code (200 series)
	payload: OneMany // element or an element collection
}

Importing OneMany

Here's everything that can be imported to use OneManys:

import { OneMany, One, Many } from 'rms-ts-monad'

const one = One(10)
const many = Many([10, 20, 30])

OneMany.isOneMany

Returns whether this instance is a OneMany (either an One or a Many).

import { OneMany, One } from 'rms-ts-monad'

OneMany.isOneMany(One(10)) // true

OneMany.all

Creates a new One OneMany holding the tuple of all the values contained in the passed array if they were all One, else returns the first encountered Many.

import { OneMany, One, Many } from 'rms-ts-monad'

const result = OneMany.all([
  One(20),
  Many([10, 20, 30]),
  One(200),
  Many([40, 50, 60])
]) // Many([10, 20, 30]),

isOne

Returns whether this is an instance of One

import { OneMany, One, Many } from 'rms-ts-monad'

One(10).isOne() // true

map

If OneMany is a One, maps it content, else propagates the Many.

import { OneMany, One, Many } from 'rms-ts-monad'

One(10).map(x => x * 2) // One(20)
Many([10, 20, 30]).map(x => x * 2) // Many([10, 20, 30])

mapMany

If OneMany is a Many, maps it content, else propagates the One.

import { OneMany, One, Many } from 'rms-ts-monad'

One(10).mapMany(x => x * 2) // One(10)
Many([10, 20, 30]).mapMany(x => x * 2) // Many([20, 40, 60])

flatMap

Maps the value contained in this OneMany with another OneMany; if it's a One it propagates a One, otherwise a Many;

import { OneMany, One, Many } from 'rms-ts-monad'

One(10).flatMap(x => One(x * 2)) // One(20)
Many([10, 20, 30]).flatMap(x => Many(x * 2)) // Many([20, 40, 60])

fold

Applies the first function if this is an Many, else applies the second function. Note: Don't use in tight loops; use isOne() instead.

import { OneMany, One, Many } from 'rms-ts-monad'

One(10).fold(
  many => console.error(JSON.stringfy(many)),
  num => num * 2
) // 20


Many([10, 20, 30]).fold(
  many => console.error(JSON.stringfy(many)),
  num => num * 2
) // 10, 20, 30