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

@danielnarey/record

v0.1.1

Published

[Deprecated] A tiny functional data structure for static key-value stores

Downloads

6

Readme

@danielnarey/record

[Deprecated] A tiny functional data structure for static key-value stores

Deprecation Warning: This experimental library is no longer in active development and will not be updated in response to Node.js version releases or security vulnerabilities identified in the dependency tree.

Purpose

When you have key-value data that should only be set once in the context of an application, using a record gives you convenient accessors, while preventing you from accidentally modifying your application's source of truth.

A record is just a thin layer of abstraction over Object, which makes it trivial to serialize record data to JSON for storage and retrieval.

Examples

import record from '@danielnarey/record';
// OR: const record = require('@danielnarey/record');

// constructor
const rec = record.from({
  banana: '🍌',
  grapes: '🍇',
  cherries: '🍒',
  watermelon: '🍉',
});

typeof(rec); //--> 'function'

// accessors
record.get(rec, 'grapes');  //--> '🍇'
record.get(rec, 'pineapple'); //--> undefined

record.getAsPromise(rec, 'grapes').then(console.log); //--> '🍇'
record.getAsPromise(rec, 'pineapple').catch(() => console.log('🙈')); //--> '🙈'

record.getWithDefault(rec, 'grapes', '🙈'); //--> '🍇'
record.getWithDefault(rec, 'pineapple', '🙈'); //--> '🙈'

// conversion
record.toString(rec); //--> '{"banana":"🍌","grapes":"🍇","cherries":"🍒","watermelon":"🍉"}'

API

from(obj) => ({...})

Create an immutable record from a shallow clone of an object, returning a functional interface to the record (denoted as ({...})).

get(rec, k) => v|undefined

Returns the value associated with key k in record rec, or undefined if no such key exists.

getAsPromise(rec, k, [test, [err]]) => Promise<v|err>

If k exists in rec and passing its associated value v to test returns true, getAsPromise returns a promise resolving to v. If k does not exist or test returns false, getAsPromise returns a promise that rejects with err. If a test function is not supplied, the default test returns true for any value that is not undefined or null.

getWithDefault(rec, k, d, [test]) => v|d

If k exists in rec and passing its associated value v to test returns true, getWithDefault returns v. If k does not exist or test returns false, getWithDefault returns d. If a test function is not supplied, the default test returns true for any value that is not undefined or null.

keys(rec) => [...]

Returns an array containing all of the keys in rec.

toString(rec) => '{...}'

Returns the contents of rec as a JSON string.

Prior Art