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

@jk2908/cxx

v0.2.6

Published

Utilities for generating styles in React 19

Downloads

935

Readme

@jk2908/cxx

Build-time CSS template tag utilities for React 19.

Install

npm install @jk2908/cxx lightningcss react react-dom

Usage

import { cxx } from '@jk2908/cxx'

const [css, styles, href] = cxx`
	.header {
		display: flex;
		gap: 0.75rem;
	}
`

export function Header() {
	return (
		<header className={styles.header}>
			<style href={href} precedence="medium">
				{css}
			</style>
		</header>
	)
}

The cxx tag is a build-time marker. Use the Vite plugin so the placeholders are replaced before runtime. String interpolation inside the template is not supported.

Named blocks can opt into generated class-key types:

import { cxx, type HeroClasses } from '@jk2908/cxx'

const [css, styles, href] = cxx.tag<HeroClasses>('hero')`
	.hero {
		display: flex;
	}

	.copy {
		max-width: 60ch;
	}
`

export function Hero() {
	return (
		<section className={styles.hero}>
			<p className={styles.copy}>Type-safe class names.</p>
		</section>
	)
}

// `styles.coppy` is a type error

The string passed to cxx.tag(...) is turned into the exported type name by appending typeSuffix and then normalising the whole result into Pascal Case. With the default suffix, cxx.tag('hero') becomes HeroClasses, and cxx.tag('marketing-banner') becomes MarketingBannerClasses. If typeSuffix is false, those become Hero and MarketingBanner instead.

Generated class-key types are imported from the root package, not a separate generated subpath.

Because .cxx is generated, it is recommended to add .cxx to your .gitignore.

Vite

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import cxx from '@jk2908/cxx/vite'

export default defineConfig({
	plugins: [react(), cxx({ typeSuffix: 'Classes' })],
})

The transform always emits minified CSS and CSS Modules class mappings.

typeSuffix controls the generated exported type name suffix. It defaults to 'Classes'. Set it to false to omit the suffix.

Next

import { withCxx } from '@jk2908/cxx/next'

/** @type {import('next').NextConfig} */
const nextConfig = {}

export default withCxx(nextConfig, { typeSuffix: 'Classes' })

Use the Next integration when you want cxx transforms and generated class-key types inside a Next app.

See CHANGELOG.md for release notes.

Syntax highlighting

The vscode-cxx extension provides syntax highlighting for cxx and cxx.tag() tagged template literals in VS Code. See its README for install instructions.

License

MIT