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

@zaydek/lib

v0.6.4

Published

`@zaydek/lib` is a typed standard library for personal use. Contributions and improvements are welcome as issues and or pull requests.

Downloads

3

Readme

@zaydek/lib

@zaydek/lib is a typed standard library for personal use. Contributions and improvements are welcome as issues and or pull requests.

To get started, simply run this command:

yarn add @zaydek/lib
# or npm i @zaydek/lib

Table of Contents


attrs/disableAutoCorrect

Attributes for disabling autocorrect.

Read https://davidwalsh.name/disable-autocorrect for more information.

Usage:

import { disableAutoCorrect } from "@zaydek/lib/dist/attrs"

<input type="text" {...disableAutoCorrect} />

attrs/target_blank

Attributes for safely opening an anchor in a separate page.

Read https://mathiasbynens.github.io/rel-noopener for more information.

Usage:

import { target_blank } from "@zaydek/lib/dist/attrs"

<a href="..." {...target_blank} />

components/DocumentTitle components/LayoutDocumentTitle

interface Props {
	title: string
	children?: React.ReactNode
}

The DocumentTitle components declaratively render document.title. They can be used as wrapper components or as side-effects.

The difference between DocumentTitle and LayoutDocumentTitle is simply whether useEffect or useLayoutEffect is used. useLayoutEffect renders eagerly whereas useEffect renders lazily. If you don’t know what that means, use DocumentTitle.

Usage:

import { DocumentTitle } from "@zaydek/lib/dist/components"

<DocumentTitle title="...">
	{children}
</DocumentTitle>
import { DocumentTitle } from "@zaydek/lib/dist/components"

<DocumentTitle title="..." />

components/ExtAnchor

An <ExtAnchor> is simply an <a> with target_blank destructured.

import { ExtAnchor } from "@zaydek/lib/dist/components"

<ExtAnchor href="TODO">Hello, world!</ExtAnchor>
// -> <a href="TODO" target="_blank" rel="noopener noreferrer">Hello, world!</a>

components/Switch components/Case

Renders a switch-case expression using JSX. <Default> is not currently supported.

Usage:

import { Switch, Case } from "@zaydek/lib/dist/components"

<Switch on={...}>
  <Case case={...}>
    ...
  <Case>
  <Case case={...}>
    ...
  <Case>
  <Case case={...}>
    ...
  <Case>
</Switch>

Note: <Switch> and <Case> are implemented using generics. This means you can use <Switch<string>> to enforce type-correctness for on={...} or <Case<string>> for case={...}. Note that <Switch<string>> does not enforce type-correctness for children <Case> elements.


helpers/range

Helper to declaratively generate a range. A range is simply an array of numbers, generally integers.

import { range } from "@zaydek/lib/dist/helpers"

// function range(to: number): number[]
range(1) // -> [0]
range(2) // -> [0, 1]
range(4) // -> [0, 1, 2, 3]
range(8) // -> [0, 1, 2, 3, 4, 5, 6, 7]
import { range } from "@zaydek/lib/dist/helpers"

// function range(from: number, to: number): number[]
range(4, 8) // -> [4, 5, 6, 7]
import { range } from "@zaydek/lib/dist/helpers"

// function range(from: number, to: number, step: number): number[]
range(4, 8, 2) // -> [4, 6]

helpers/toKebabCase helpers/toTitleCase

Helpers for converting between kebab-case and TitleCase.

import { toKebabCase, toTitleCase } from "@zaydek/lib/dist/helpers"

toKebabCase("HelloWorld")  // "hello-world"
toTitleCase("hello-world") // "HelloWorld"

hooks/useBreakpoints

Hook for conditionally rendering. The following breakpoints are used by default:

const defaultBreakpoints = {
	xs: 40 * 16, // ->  512
	sm: 48 * 16, // ->  640
	md: 56 * 16, // ->  768
	lg: 64 * 16, // -> 1024
	xl: 80 * 16, // -> 1280
}

useBreakpoints simulates @media (min-width: ...). This API is preferred over className="hidden sm:block".

You can parameterize breakpoints by passing a Breakpoints object. Note that only xs-xl breakpoints are supported.

Usage:

import { useBreakpoints } from "@zaydek/lib/dist/hooks"

function Component() {
	const screen = useBreakpoints()
	return (
		screen.sm && ( // @media (min-width: 768px) { ... }
			...
		)
	)
}

License

Licensed as MIT.