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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mycuppa/core

v0.0.0

Published

Core utilities and types for Cuppa framework

Readme

@mycuppa/core

Essential utilities, types, and helpers that form the foundation of the Cuppa framework.

Installation

npm install @mycuppa/core
# or
pnpm add @mycuppa/core
# or
yarn add @mycuppa/core

Features

  • 🎯 Type Utilities - Advanced TypeScript helpers for better type safety
  • 🛠️ Utility Functions - Common functions for everyday tasks
  • Performance Utilities - Debounce and throttle functions
  • 📝 Logger - Structured logging with configurable levels
  • 🔑 ID Generation - Generate unique identifiers with prefixes

Quick Start

import {
  isDefined,
  deepMerge,
  debounce,
  createLogger,
  generateId,
} from '@mycuppa/core'

// Type-safe null checks
const value: string | null = getValue()
if (isDefined(value)) {
  console.log(value.toUpperCase())
}

// Deep merge objects
const config = deepMerge(defaults, custom)

// Debounce function calls
const search = debounce((query: string) => {
  console.log('Searching...', query)
}, 300)

// Create logger
const logger = createLogger({
  level: 'info',
  prefix: 'App',
})
logger.info('Application started')

// Generate unique IDs
const userId = generateId('user') // 'user-k2j9f8x1-a3b4c5d6'

API Reference

Type Checking

  • isDefined<T>(value) - Type-safe check for non-null/undefined values
  • isPlainObject(value) - Check if value is a plain object

Object Manipulation

  • deepMerge(target, source) - Deep merge two objects

Performance

  • debounce(fn, delay) - Create debounced function
  • throttle(fn, limit) - Create throttled function
  • sleep(ms) - Async sleep utility

Utilities

  • generateId(prefix?) - Generate unique IDs

Logger

const logger = createLogger({
  level: 'info', // 'debug' | 'info' | 'warn' | 'error'
  prefix: 'App',
  timestamp: true,
})

logger.debug('Debug message')
logger.info('Info message')
logger.warn('Warning message')
logger.error('Error message')

TypeScript Support

Full TypeScript support with type definitions included:

import type { DeepPartial, LogLevel, CuppaConfig } from '@mycuppa/core'

Documentation

For detailed documentation, visit:

License

MIT