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

fp-standard

v0.13.0

Published

A better Standard Library for JavaScript

Downloads

5

Readme

fp-standard

Build Status

The missing standard library for JavaScript. This lightweight library is meant to fill the gap between Ramda (functional) and Lodash (performance) while providing you with the tools you need to write sane JavaScript. All functions are auto-curried and expect data as the last argument to encourage composition.

Usage

npm i --save fp-standard

After installing the dependency, there are a few ways to use this library:

ES6 Module

import * as f from 'fp-standard'

const name = f.prop('name')
name({ name: 'Bob' }) // => Bob

Or, if you have full control over your code base and don't want to continually import/prefix all of the functions, you can install the library to a context.

Installer

import install from 'fp-standard/installer'

// Node/Webpack/etc:
install(global)

// Directly in the browser:
install(window)

// Now all of the functions are available on the scope you installed it to:
prop('name', { name: 'Bob' }) // => Bob

fp-standard vs. Ramda vs. Lodash

Category | fp-standard | Ramda | Lodash | Lodash-FP --------------- | ----------- | ----- | --------- | --------- Minified (kb) | 7.9 | 41.1 | 70.1 | 81.2 100% Immutable | Yes | Yes | No | Yes Auto-Curry | Yes | Yes | No | Yes Object Equality | Value | Value | Reference | Reference IE 9+ | Yes | Yes | Yes | Yes

Benchmarks

Improved formatting to come soon!

[
  // Reduce
  // -------------------------
  [
    "fp-standard | 1,007,237  ops/sec ±1.84%   (82 runs sampled)",
    "ramda       | 16,457     ops/sec ±2.01%   (88 runs sampled)",
    "lodash      | 81,662     ops/sec ±1.56%   (82 runs sampled)",
    "lodash/fp   | 339,761    ops/sec ±1.47%   (79 runs sampled)"
  ],
  // Map
  // -------------------------
  [
    "fp-standard | 586,940    ops/sec ±2.18%   (83 runs sampled)",
    "ramda       | 447,594    ops/sec ±2.03%   (88 runs sampled)",
    "lodash      | 70,825     ops/sec ±2.01%   (81 runs sampled)",
    "lodash/fp   | 380,222    ops/sec ±1.58%   (83 runs sampled)"
  ],
  // Filter
  // -------------------------
  [
    "fp-standard | 317,629    ops/sec ±0.71%   (95 runs sampled)",
    "ramda       | 326,238    ops/sec ±1.12%   (89 runs sampled)",
    "lodash      | 72,329     ops/sec ±0.86%   (93 runs sampled)",
    "lodash/fp   | 266,918    ops/sec ±1.97%   (87 runs sampled)"
  ],
  // Reject
  // -------------------------
  [
    "fp-standard | 324,369    ops/sec ±1.35%   (78 runs sampled)",
    "ramda       | 45,971     ops/sec ±1.49%   (80 runs sampled)",
    "lodash      | 38,072     ops/sec ±2.10%   (84 runs sampled)",
    "lodash/fp   | 34,872     ops/sec ±1.49%   (81 runs sampled)"
  ]
]