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

@koober/std

v1.0.0-rc.54

Published

Standard library

Downloads

757

Readme

Koober Standard Library (@koober/std)

NPM Version License

Standard library

About the project

std is a library for typed functional programming in TypeScript. It focuses on strong typing, purity, simplicity and restricted set of functionalities. Advanced functional programming patterns, immutability should not be achieved if it degrades significantly type safety and simplicity.

| | Balance | | |-----------------------------: | :-----: | :-------------------------------| | Loose typing | □□□□□□■ | Strong typing | | Impure, Mutable | □□□□□■□ | Pure, Immutable | | Simple Functional Programming | □□■□□□□ | Advanced Functional Programming | | Lean | □□■□□□□ | Complete |

Installation

npm install @koober/std

Usage

Enforce STD to write better code

| VanillaJS | STD | Explanation | |--------------------------------|--------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | null, undefined | Option | Stop spending time choosing between undefined and null. Based on Microsoft standard, undefined (== Option.None) is preferred. | | throw new Error() | return Result.Error(new Error()) | Error throwing / Promise rejection is a mechanism that should only be used to stop the execution of a program. When a computation represents an expected failure (ex: parsing, data fetching), Result should be used. | | Promise | Task.Async | Task.Async is like a Promise but lazily evaluated. It has numerous advantages (composable, etc). See Article | | N/A | Time, Duration | Tagged types that makes the unit of time explicit (milliseconds). Some libraries could use seconds or minutes implicitly which is confusing | | setTimeout(fn, ms) | Task.andThen(Time.delay(ms), fn) | setTimeout is impure, create a task that will run after Time.delay. | | Date.now | Time.now | Date.now is impure, use Time.now that is a Task.Sync. | | console.debug | Console.debug | console.debug is impure, use Console.debug that is a Task.Sync. | | Math.random | Random.number | Math.random is impure, use Random.number that is a Task.Sync. | | UUID, ... | Task.Sync | More impure function, wrap them in a Task.Sync() | | N/A | Int | A tagged type that narrows number to only the safe integer values | | [].map, [].filter, ... | Array.map, Array.filter, ... | Array module contains all immutable operations on arrays. |

Example

import { Result, runTask, Console } from '@koober/std';

function parseNumber(expr: string) {
  const parsed = Number(expr);

  // - Return a immutable Result object
  // - Avoid throwing error because impure
  // - Avoid using NaN because the error case is implicit in the typing
  return Number.isNaN(parsed) ? Result.Ok(parsed) : Result.Error('NotANumber');
}

export function main() {
  const parsed = parseNumber('1.1'); // Result.Ok(1.1)
  const computed = Result.map(parsed, (amount) => amount + 2); // Result.Ok(3.1)

  // Lazy operation that will display in console the computed result when evaluated
  return Console.debug(computed);
}

// runTask is impure and should be put at the edge of the program
runTask(main()); // prints { _type: 'Result/Ok', value: 3.1 }

License

MIT © Julien Polo [email protected]