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

@rxtk/utils

v0.0.0

Published

🔌 Re-usable operators and utilities for rxjs

Downloads

5

Readme

@rxtk/utils

🔌 Re-usable operators and utilities for rxjs

npm i @rxtk/utils
yarn add @rxtk/utils

API

debug

Add a debugger to an RXJS pipeline.

import {from} from 'rxjs';
import {map} from 'rxjs/operators';
import {debug,toConsole} from '@rxtk/utils';

const input$ = from([2, 3]);
const output$ = input$.pipe(
  toConsole('input'),
  debug(), // inserts breakpoint here
  map(n => n * n),
  toConsole('squared'),
  debug() // inserts a second breakpoint here
);
output$.subscribe();
// 2
// debugger will pause here!
// squared 4
// debugger will pause here!
// 3
// debugger will pause here!
// squared 9
// debugger will pause here!

delayUntil

Delays emissions from a source observable until another observable emits.

import {from,timer} from 'rxjs';
import {map} from 'rxjs/operators';
import {tap} from 'rxjs/operators';
import {delayUntil} from '@rxtk/utils';

// this code delay emitting items from the source observable until 5 seconds 
// have passed
const string$ = from(['foo', 'bar']);
const start$ = timer(5000).pipe(tap(console.log));
const output$ = string$.pipe(delayUntil(start$));
output$.subscribe(console.log); 
// Output:
// 5000
// foo
// bar

listToSingleResult

Gets the item from a single-item array and throws if the array is empty or has multiple items.

import {of} from 'rxjs';
import {listToSingleResult} from '@rxtk/utils';

// this code delay emitting items from the source observable until 5 seconds 
// have passed
const input$ = of([{'foo': 'bar'}]);
const output$ = string$.pipe(listToSingleResult());
output$.subscribe(console.log); 
// Output:
// {foo: bar}

reduceToString

Concatenates items into a string.

import {from,takeLast} from 'rxjs';
import {listToSingleResult} from '@rxtk/utils';

// this code delay emitting items from the source observable until 5 seconds 
// have passed
const input$ = from(['always ', 'money ', 'in ', 'the ', 'banana ', 'stand']);
const output$ = string$.pipe(
  reduceToString(),
  takeLast(1)
);
output$.subscribe(console.log); 
// Output:
// "always money in the banana stand"

parseJSON

Map JSON strings to JavaScript objects.

import {from} from 'rxjs';
import {toConsole, parseJSON} from '@rxtk/utils';

const input$ = from(['{"foo": "bar"}']);
const output$ = input$.pipe(
  parseJSON(),
  toConsole()
);
output$.subscribe();
// {foo: 'bar'}

toConsole

Add log an RXJS pipeline's data to the console.

import {from} from 'rxjs';
import {toConsole} from '@rxtk/utils';

const input$ = from([1, 2, 3]);
const output$ = input$.pipe(
  toConsole(),
  map(n => n * n),
  toConsole('squared')
);
output$.subscribe();
// 1
// squared 1
// 2
// squared 4
// 3
// squared 4

toJSON

Map each item to a JSON string.

import {from} from 'rxjs';
import {toConsole, toJSON} from '@rxtk/utils';

const input$ = from([{foo: 'bar'1}]);
const output$ = input$.pipe(
  toJSON(),
  toConsole('squared')
);
output$.subscribe();
// '{"foo": "bar"}'

withIndex

Add an index to data in the stream.

import {from} from 'rxjs';
import {withIndex} from '@rxtk/utils';

const input$ = from(['there\'s', 'no', 'place', 'like', 'home']);
const output$ = input$.pipe(
  withIndex()
);
output$.subscribe(console.log);
// ["there's", 0]
// ["no", 1]
// ["place", 2]
// ["like", 3]
// ["home", 4]